You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
675B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using MySql.Data.MySqlClient;
  5. namespace CSVDownloader.Store.CreditCSVData {
  6. class CreditCSVData {
  7. public String spot_id = "";
  8. public DateTime upd_date = DateTime.Now;
  9. public String upd_staff = "auto_tool";
  10. public DateTime reg_date = DateTime.Now;
  11. public String reg_staff = "auto_tool";
  12. }
  13. abstract class CreditCSVDataStore : MySQL {
  14. public CreditCSVDataStore(MySqlConnection conn) : base(conn) {
  15. }
  16. abstract public void Save(List<CreditCSVData> list);
  17. abstract public int Delete(DateTime from, DateTime to);
  18. }
  19. }