Example #1
0
 public ExcelReportsSQLiteGenerator(IVehicleVendorMySqlRepository repoMySql, IVehicleVendorSqLiteRepository repoSqLite, DateTime start, DateTime end)
 {
     this.repoMySql  = repoMySql;
     this.repoSqLite = repoSqLite;
     this.start      = start;
     this.end        = end;
 }
 public ExcelReportsSQLiteGenerator(IVehicleVendorMySqlRepository repoMySql, SqLiteContext sqliteDb, DateTime start, DateTime end)
 {
     this.repoMySql = repoMySql;
     this.sqliteDb  = sqliteDb;
     this.start     = start;
     this.end       = end;
 }
 public ExcelReportsSQLiteGenerator(IVehicleVendorMySqlRepository repoMySql, IVehicleVendorSqLiteRepository repoSqLite, DateTime start, DateTime end)
 {
     this.repoMySql = repoMySql;
     this.repoSqLite = repoSqLite;
     this.start = start;
     this.end = end;
 }
Example #4
0
 public ExcelReportsSQLiteGenerator(IVehicleVendorMySqlRepository repoMySql, SqLiteContext sqliteDb,  DateTime start, DateTime end)
 {
     this.repoMySql = repoMySql;
     this.sqliteDb = sqliteDb;
     this.start = start;
     this.end = end;
 }
Example #5
0
 public MainWindow()
 {
     InitializeComponent();
     this.repo = new VehicleVendorRepository(new IVehicleVendorDbContext[] { new VehicleVendorDbContext() });
     this.repoMySql = new VehicleVendorMySqlRepository();
     this.nissanMongoDb = new VehicleVendorMongoDb();
     this.sqliteDb = new SqLiteContext();
 }
Example #6
0
 public MainWindow()
 {
     InitializeComponent();
     this.repo          = new VehicleVendorRepository(new IVehicleVendorDbContext[] { new VehicleVendorDbContext() });
     this.repoMySql     = new VehicleVendorMySqlRepository();
     this.nissanMongoDb = new VehicleVendorMongoDb();
     this.sqliteDb      = new SqLiteContext();
 }
 public MySqlDataJsonLoader(IVehicleVendorRepository vehicleVendorRepository, IVehicleVendorMySqlRepository mySqlRepository)
 {
     this.repository = vehicleVendorRepository;
     this.mySqlRepository = mySqlRepository;
 }
 public MySqlDataJsonLoader(IVehicleVendorRepository vehicleVendorRepository, IVehicleVendorMySqlRepository mySqlRepository)
 {
     this.repository      = vehicleVendorRepository;
     this.mySqlRepository = mySqlRepository;
 }