public DepartmentController(
     IDepartmentApplicationService departmentAppService,
     IQueryRepository queryRepository)
 {
     _DepartmentAppService = departmentAppService;
     _QueryRepository = queryRepository;
 }
 public IDepartmentApplicationService _SetDepartmentApplicationService(IDepartmentApplicationService obj)
 {
     _IDepartmentApplicationService = obj; return obj;
 }
Beispiel #3
0
 public DepartmentsController(IDepartmentApplicationService departmentApplicationService)
 {
     DepartmentApplicationService = departmentApplicationService;
 }
 public DepartmentsController(TechneAppDbContext context, IDepartmentApplicationService departmentApplicationService)
 {
     _context = context;
     _departmentApplicationService = departmentApplicationService;
 }