public DepartmentController(
     IUnitOfWorkAsync unitOfWorkAsync,
     IDepartmentBLL departmentService)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _departmentService = departmentService;
 }
コード例 #2
0
 public DecisionController(
     IApplicationContext appicationContext,
     IDecisionBLL decisionBLL,
     ICouncilTypeBLL councilTypeBLL,
     ICountryBLL countryBLL,
     IDecisionTypeBLL decisionTypeBLL,
     IActivitySectorBLL activitySectorBLL,
     IMainCategoryBLL mainCategoryBLL,
     ICompanyBLL companyBLL,
     IDepartmentBLL departmentBLL,
     IDecisionExecutionBLL decisionExecutionBLL,
     IDepartmentResponsibleBLL departmentResponsibleBLL,
     ISubCategoryBLL subCategoryBLL)
 {
     this._decisionBLL         = decisionBLL;
     this._mainCategoryBLL     = mainCategoryBLL;
     this._subCategoryBLL      = subCategoryBLL;
     _countryBLL               = countryBLL;
     _decisionTypeBLL          = decisionTypeBLL;
     _activitySectorBLL        = activitySectorBLL;
     _companyBLL               = companyBLL;
     _departmentBLL            = departmentBLL;
     _decisionExecutionBLL     = decisionExecutionBLL;
     _departmentResponsibleBLL = departmentResponsibleBLL;
     _councilTypeBLL           = councilTypeBLL;
     _appicationContext        = appicationContext;
 }
コード例 #3
0
 public EmployeeController(
     IUnitOfWorkAsync unitOfWorkAsync,
     IEmployeeBLL employeeService,
     IDepartmentBLL departmentService,
     IDepartmentRoleBLL departmentRoleService)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _employeeService = employeeService;
     _departmentService = departmentService;
     _departmentRoleService = departmentRoleService;
 }
コード例 #4
0
 public UserManagerModel(
     IEmployeeLoginBLL employeeLoginService,
     IEmployeeBLL employeeService,
     IUnitOfWorkAsync unitOfWorkAsync,
     IDepartmentRoleBLL departmentRoleService,
     IDepartmentBLL departmentService)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _employeeLoginService = employeeLoginService;
     _employeeService = employeeService;
     _departmentRoleService = departmentRoleService;
 }
 public AuthenticationController(
     IDepartmentBLL departmentService,
     IDepartmentRoleBLL departmentRoleService,
     IEmployeeBLL employeeService,
     IUnitOfWorkAsync unitOfWorkAsync,
     IEmployeeLoginBLL employeeLoginService)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _employeeLoginService = employeeLoginService;
     _employeeService = employeeService;
     _departmentRoleService = departmentRoleService;
     _departmentService = departmentService;
 }
コード例 #6
0
 public DepartmentController(IDepartmentBLL departmentBll)
 {
     this.departmentBLL = departmentBll;
 }
コード例 #7
0
 public DepartmentController(IDepartmentBLL departmentBLL, IUserBLL userBLL)
 {
     _departmentBLL = departmentBLL;
     _userBLL       = userBLL;
 }
コード例 #8
0
 public ExampleService(IRepository repository, IDepartmentBLL departmentBll, IEmployeeBLL employeeBll)
 {
     this.repository    = repository;
     this.departmentBLL = departmentBll;
     this.employeeBLL   = employeeBll;
 }
コード例 #9
0
 public EmployeeController(IEmployeeBLL employeeBLL, IDepartmentBLL departmentBLL)
 {
     _employeeBLL   = employeeBLL;
     _departmentBLL = departmentBLL;
 }
コード例 #10
0
 public DepartmentController(IDepartmentBLL _departmentbll)
 {
     this.departmentbll = _departmentbll;
 }
コード例 #11
0
 public DepartmentService()
 {
     this.departmentRepository = new DepartmentRepository();
     this.departmentBLL        = new DepartmentBLL();
 }
コード例 #12
0
 public DepartmentsController(IDepartmentBLL bll)
 {
     _bll = bll ?? throw new ArgumentNullException(nameof(bll));
 }