public EmployeeService(EmployeeContext employeeContext)
 {
     _employeeContext = employeeContext;
 }
示例#2
0
 private RepositoryBase(IUnitofWork unitOfWork)
 {
     _context = (EmployeeContext)unitOfWork;
 }