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