示例#1
0
 public UnitOfWork(EmployeeDbContext dbContext)
 {
     _dataContext = dbContext;
 }
 public EmployeeRepository(EmployeeDbContext ctx)
 {
     _context = ctx;
 }