예제 #1
0
 public UnitOfWork(DarkbetContext context)
 {
     _context = context;
 }
예제 #2
0
 public DiceRepository(DarkbetContext db) : base(db)
 {
 }
예제 #3
0
 public WheelOfFortuneRepository(DarkbetContext db) : base(db)
 {
 }
예제 #4
0
 public Repository(DarkbetContext db)
 {
     Db    = db;
     DbSet = Db.Set <TEntity>();
 }