Beispiel #1
0
 public DisbursementController(IDisbursementService disbursementService, IItemDisbursementService itemDisbursementService,
                               IInventoryService inventoryService, IDepartmentService departmentService)
 {
     this.disbursementService     = disbursementService;
     this.itemDisbursementService = itemDisbursementService;
     this.inventoryService        = inventoryService;
     this.departmentService       = departmentService;
 }
Beispiel #2
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 #5
0
 public ReportController(IItemDisbursementService itemDisbursementService, IItemRequisitionService itemRequisitionService, IItemPurchaseOrderService itemPurchaseOrderService)
 {
     this.itemRequisitionService   = itemRequisitionService;
     this.itemPurchaseOrderService = itemPurchaseOrderService;
     this.itemDisbursementService  = itemDisbursementService;
 }