コード例 #1
0
 public UnitOfWork(CallCenterContext context)
 {
     _context     = context;
     Employees    = new EmployeeRepository(_context);
     Designations = new DesignationRepository(_context);
     Reclamations = new ReclamationRepository(_context);
 }
コード例 #2
0
 public UnitOfWork(ApplicationDbContext context)
 {
     _context     = context;
     Employees    = new EmployeeRepository(_context);
     Designations = new DesignationRepository(_context);
     Departments  = new DepartmentRepository(_context);
     Reclamations = new ReclamationRepository(_context);
     SoldDevices  = new SoldDevicesRepository(_context);
 }