Exemple #1
0
 public UnitOfWork(PracticalTaskContext context)
 {
     _context = context;
 }
 public Repository(PracticalTaskContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
 public CustomerRepository(PracticalTaskContext context)
     : base(context)
 {
 }