Example #1
0
 public DepartmentApplicationService(ITechneAppDbContext context, IDepartmentInfrastructureService departmentInfrastructureService)
 {
     _context = context;
     _departmentInfrastructureService = departmentInfrastructureService;
 }
 public EmployeeApplicationService(ITechneAppDbContext context, IEmployeeInfrastructureService employeeInfrastructureService)
 {
     _context = context;
     _employeeInfrastructureService = employeeInfrastructureService;
 }
Example #3
0
 public DepartmentInfrastructureService(ITechneAppDbContext context)
 {
     _context = context;
 }
Example #4
0
 public EmployeeInfrastructureService(ITechneAppDbContext context)
 {
     _context = context;
 }