public DepartmentService(EmployeeManagerDbContext context) { _context = context; _dbset = context.Departments; }
public Repository(EmployeeManagerDbContext context) { _context = context; _entities = _context.Set <T>(); }
//Конструктор по умолчанию. //Принимает ссылку на контекст БД для последующей передачи в репозитории public UnitOfWork(EmployeeManagerDbContext context) { _context = context; }
//Конструктор по умолчанию //Передаёт ссылку на контекст и набор данных от UnitOfWork во внутренние поля public EmployeeService(EmployeeManagerDbContext context) { _context = context; _dbset = context.Set <Employee>(); }