Exemple #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;
 }
Exemple #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;
 }
Exemple #3
0
 public StationeryAPIController(StationeryRetrievalFormService srfservice, StationeryRetrievalRequisitionFormService srrfservice, ProductService pservice)
 {
     this.srfservice  = srfservice;
     this.srrfservice = srrfservice;
     this.pservice    = pservice;
 }