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