Beispiel #1
0
 public DisbursementAPIController(DisbursementFormService disbursementservice, DisbursementFormRequisitionFormService disbursementFormRequisitionFormService, DisbursementFormProductService disbursementFormProductService, StationeryRetrievalRequisitionFormService stationeryRetrievalRequisitionFormService, DepartmentService departmentService, EmployeeService employeeService)
 {
     this.disbursementFormService = disbursementservice;
     this.disbursementFormRequisitionFormService    = disbursementFormRequisitionFormService;
     this.disbursementFormProductService            = disbursementFormProductService;
     this.stationeryRetrievalRequisitionFormService = stationeryRetrievalRequisitionFormService;
     this.departmentService = departmentService;
     this.employeeService   = employeeService;
 }
Beispiel #2
0
 public DisbursementController(ILogger <DisbursementController> logger,
                               EmployeeService eService,
                               DisbursementFormService dfService,
                               DisbursementFormProductService dfpService,
                               StationeryRetrievalRequisitionFormService srrfService,
                               DisbursementFormRequisitionFormProductService dfrfpService)
 {
     _logger           = logger;
     this.eService     = eService;
     this.dfService    = dfService;
     this.dfpService   = dfpService;
     this.srrfService  = srrfService;
     this.dfrfpService = dfrfpService;
 }
Beispiel #3
0
 public HomeController(ILogger <HomeController> logger,
                       EmployeeService empService,
                       RequisitionService rfService,
                       StationeryRetrievalFormService srfService,
                       DisbursementFormProductService dfpService,
                       DashboardService dashService,
                       DelegationService delService,
                       CollectionPointService cpService)
 {
     _logger          = logger;
     this.empService  = empService;
     this.rfService   = rfService;
     this.srfService  = srfService;
     this.dfpService  = dfpService;
     this.dashService = dashService;
     this.delService  = delService;
     this.cpService   = cpService;
 }