예제 #1
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;
 }
예제 #3
0
 public ReportController(IItemDisbursementService itemDisbursementService, IItemRequisitionService itemRequisitionService, IItemPurchaseOrderService itemPurchaseOrderService)
 {
     this.itemRequisitionService   = itemRequisitionService;
     this.itemPurchaseOrderService = itemPurchaseOrderService;
     this.itemDisbursementService  = itemDisbursementService;
 }