public BotStorageRepo(BotStorageEntities context = null)
 {
     this.context = context ?? new BotStorageEntities();
 }
Exemple #2
0
 public HorseRacingDbRepo(HorseRacingDBEntities horseRacingDbContext = null, BotStorageEntities botStorageContext = null)
 {
     this.botStorageContext    = botStorageContext ?? new BotStorageEntities();
     this.horseRacingDbContext = horseRacingDbContext ?? new HorseRacingDBEntities();
 }