Esempio n. 1
0
 public UnitOfWork(EmployeeRegistrationContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 public EmployeeRepository(EmployeeRegistrationContext context) : base(context)
 {
 }
Esempio n. 3
0
 protected Repository(EmployeeRegistrationContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }