Beispiel #1
0
 public OperationLevelProjectionsController(
     IDisbursementService disbursementService,
     IDisbursementProjectionEligibilityService eligibilityService)
 {
     _disbursementService = disbursementService;
     _eligibilityService  = eligibilityService;
 }
 public StoreController()
 {
     inventorySvc = new InventoryService();
     disbursementSvc = new DisbursementService();
     deptSvc = new DepartmentService();
     supplierAndPOSvc = new SupplierAndPurchaseOrderService();
     utilSvc = new UtilityService();
 }
Beispiel #3
0
 public DisbursementController(IDisbursementService disbursementService, IItemDisbursementService itemDisbursementService,
                               IInventoryService inventoryService, IDepartmentService departmentService)
 {
     this.disbursementService     = disbursementService;
     this.itemDisbursementService = itemDisbursementService;
     this.inventoryService        = inventoryService;
     this.departmentService       = departmentService;
 }
Beispiel #4
0
 public DisbursementController(IDisbursementService disbursementService, IDisburseAmtDtlMakeService objDisburseAmtDtlMakeService,
                               IDistributorDepositService objDistributorDepositService, IErrorLogService _errorLogService,
                               IAuditTrailService objAuditTrailService)
 {
     this._disbursementService       = disbursementService;
     this._disburseAmtDtlMakeService = objDisburseAmtDtlMakeService;
     this._distributorDepositService = objDistributorDepositService;
     this.errorLogService            = _errorLogService;
     this._auditTrailService         = objAuditTrailService;
 }
Beispiel #5
0
 public RequisitionController(IDepartmentService departmentService, IItemService itemService,
                              IRequisitionService requisitionService, IItemRequisitionService itemRequisitionService,
                              IDisbursementService disbursementService, IItemDisbursementService itemDisbursementService,
                              IInventoryService inventoryService)
 {
     this.requisitionService      = requisitionService;
     this.itemRequisitionService  = itemRequisitionService;
     this.itemService             = itemService;
     this.departmentService       = departmentService;
     this.disbursementService     = disbursementService;
     this.itemDisbursementService = itemDisbursementService;
     this.InventoryService        = inventoryService;
 }
 public DepartmentController(IDisbursementService disbursementService, IItemDisbursementService itemDisbursementService,
                             IRequisitionService requisitionService, IItemRequisitionService itemRequisitionService, IInventoryService inventoryService,
                             IItemService itemService, IDepartmentService departmentService, IUserService userService, IDepartmentDelegationService departmentDelegationService)
 {
     this.disbursementService         = disbursementService;
     this.itemDisbursementService     = itemDisbursementService;
     this.requisitionService          = requisitionService;
     this.itemRequisitionService      = itemRequisitionService;
     this.inventoryService            = inventoryService;
     this.itemService                 = itemService;
     this.departmentService           = departmentService;
     this.userService                 = userService;
     this.departmentDelegationService = departmentDelegationService;
 }
        public HomeController(IUserService userService, IDepartmentDelegationService departmentDelegationService, IPurchaseOrderService purchaseOrderService, IStockAdjustmentService stockAdjustmentService, IDisbursementService disbursementService, IItemService itemService, IInventoryService inventoryService, IRequisitionService requisitionService, IItemDisbursementService itemDisbursementService)
        {
            this.userService = userService;
            this.departmentDelegationService = departmentDelegationService;

            //dashboard for store
            this.purchaseOrderService   = purchaseOrderService;
            this.stockAdjustmentService = stockAdjustmentService;
            this.disbursementService    = disbursementService;
            this.itemService            = itemService;
            this.inventoryService       = inventoryService;

            //dashboard for department
            this.requisitionService      = requisitionService;
            this.itemDisbursementService = itemDisbursementService;
        }
Beispiel #8
0
 public MobileDisbursementController()
 {
     disbursementService = DisbursementService.Instance;
 }
 public RepresentativeController()
 {
     disbursementSvc = new DisbursementService();
     departmentSvc   = new DepartmentService();
 }
Beispiel #10
0
 public DisbursementsController(IDisbursementService service, ILogger <DisbursementsController> logger)
 {
     this.service = service;
     this.logger  = logger;
 }