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
722B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using MySql.Data.MySqlClient;
  5. namespace CSVDownloader.Store.ElectronicMoneyDataStore {
  6. class ElectronicMoneyCSVData {
  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 ElectronicMoneyCSVDataStore : MySQL {
  14. public ElectronicMoneyCSVDataStore(MySqlConnection conn) : base(conn) {
  15. }
  16. abstract public void Save(List<ElectronicMoneyCSVData> list);
  17. abstract public int Delete(DateTime from, DateTime to);
  18. }
  19. }