public EmployeeService(EmployeeContext employeeContext)
 {
     _employeeContext = employeeContext;
 }
Exemplo n.º 2
0
 private RepositoryBase(IUnitofWork unitOfWork)
 {
     _context = (EmployeeContext)unitOfWork;
 }