Example #1
0
 public ReceiveController(IReceiveService receiveService,IGiftCertificateService giftCertificateService,
                          IReceiptAllocationService receiptAllocationService,IUserProfileService userProfileService,
                          ICommodityTypeService commodityTypeService ,IReceiveDetailService receiveDetailService,
                          ICommodityService commodityService,IStoreService storeService,ITransactionService transactionService,
                          IUnitService unitService,IShippingInstructionService shippingInstructionService,IHubService hubService,
                          ICommodityGradeService commodityGradeService,IProgramService programService,ITransporterService transporterService,
                          ICommoditySourceService commoditySourceService, IDonorService donorService)
     : base(userProfileService)
 {
     _receiveService = receiveService;
     _giftCertificateService = giftCertificateService;
     _receiptAllocationService = receiptAllocationService;
     _userProfileService = userProfileService;
     _commodityTypeService = commodityTypeService;
     _receiveDetailService = receiveDetailService;
     _commodityService = commodityService;
     _storeService = storeService;
     _transactionService = transactionService;
     _unitService = unitService;
     _shippingInstructionService = shippingInstructionService;
     _hubService = hubService;
     _commodityGradeService = commodityGradeService;
     _programService = programService;
     _transporterService = transporterService;
     _commoditySourceService=commoditySourceService;
     _donorService = donorService;
 }
Example #2
0
 public ReportsController(IDispatchService dispatchService,
      IReceiveService receiveService,
      IUserProfileService userProfileService,
      IHubService hubService,
      ITransactionService transactionService,
      ICommodityService commodityService,
      ICommodityTypeService commodityTypeService,
      IProgramService programService,
      IAdminUnitService adminUnitService,
      IDispatchAllocationService dispatchAllocationService,
      ICommoditySourceService commoditySourceService
      
      )
 {
     this._dispatchService = dispatchService;
      this._receiveService = receiveService;
      this._userProfileService = userProfileService;
      this._hubService = hubService;
      this._transactionService = transactionService;
      _commodityService = commodityService;
      _commodityTypeService = commodityTypeService;
      _programService = programService;
      _adminUnitService = adminUnitService;
      _dispatchAllocationService = dispatchAllocationService;
      _commoditySourceService = commoditySourceService;
 }
Example #3
0
        public ReportsController(IDispatchService dispatchService,
                                 IReceiveService receiveService,
                                 IUserProfileService userProfileService,
                                 IHubService hubService,
                                 ITransactionService transactionService,
                                 ICommodityService commodityService,
                                 ICommodityTypeService commodityTypeService,
                                 IProgramService programService,
                                 IAdminUnitService adminUnitService,
                                 IDispatchAllocationService dispatchAllocationService,
                                 ICommoditySourceService commoditySourceService

                                 )
        {
            this._dispatchService      = dispatchService;
            this._receiveService       = receiveService;
            this._userProfileService   = userProfileService;
            this._hubService           = hubService;
            this._transactionService   = transactionService;
            _commodityService          = commodityService;
            _commodityTypeService      = commodityTypeService;
            _programService            = programService;
            _adminUnitService          = adminUnitService;
            _dispatchAllocationService = dispatchAllocationService;
            _commoditySourceService    = commoditySourceService;
        }
        //
        // GET: /StockManagement/
        public StockManagementController(IUserProfileService userProfileService, IProgramService programService,
            ICommodityTypeService commodityTypeService, ICommoditySourceService commoditySourceService, 
            IProjectCodeService projectCodeService, IShippingInstructionService shippingInstructionService, 
            IReceiveService receiveService, IStoreService storeService, IHubService hubService,
            IAdminUnitService adminUnitService, IDispatchAllocationService dispatchAllocationService, IDonorService donorService)
        {
            _userProfileService = userProfileService;
            _programService = programService;
            _commodityTypeService = commodityTypeService;
            _commoditySourceService = commoditySourceService;
            _projectCodeService = projectCodeService;
            _shippingInstructionService = shippingInstructionService;
            _receiveService = receiveService;

            _storeService = storeService;
            _hubService = hubService;
            _adminUnitService = adminUnitService;
            _dispatchAllocationService = dispatchAllocationService;
            _donorService = donorService;
        }
        //
        // GET: /StockManagement/
        public StockManagementController(IUserProfileService userProfileService, IProgramService programService,
                                         ICommodityTypeService commodityTypeService, ICommoditySourceService commoditySourceService,
                                         IProjectCodeService projectCodeService, IShippingInstructionService shippingInstructionService,
                                         IReceiveService receiveService, IStoreService storeService, IHubService hubService,
                                         IAdminUnitService adminUnitService, IDispatchAllocationService dispatchAllocationService, IDonorService donorService)
        {
            _userProfileService         = userProfileService;
            _programService             = programService;
            _commodityTypeService       = commodityTypeService;
            _commoditySourceService     = commoditySourceService;
            _projectCodeService         = projectCodeService;
            _shippingInstructionService = shippingInstructionService;
            _receiveService             = receiveService;

            _storeService              = storeService;
            _hubService                = hubService;
            _adminUnitService          = adminUnitService;
            _dispatchAllocationService = dispatchAllocationService;
            _donorService              = donorService;
        }
 public ReceiptAllocationController(IReceiptAllocationService receiptAllocationService,
     IUserProfileService userProfileService,
     ICommoditySourceService commoditySourceService,
     IGiftCertificateService giftCertificateService,
     ICommodityService commodityService,
     IDonorService donorService,
     IGiftCertificateDetailService giftCertificateDetailService,
     IHubService hubService,
     IProgramService programService,
     ICommodityTypeService commodityTypeService)
 {
     this._receiptAllocationService = receiptAllocationService;
     this._userProfileService = userProfileService;
     this._commoditySourceService = commoditySourceService;
     this._giftCertificateService = giftCertificateService;
     this._commodityService = commodityService;
     this._donorService = donorService;
     this._giftCertificateDetailService = giftCertificateDetailService;
     this._hubService = hubService;
     this._programService = programService;
     this._commodityTypeService = commodityTypeService;
 }
 public ReceiptAllocationController(IReceiptAllocationService receiptAllocationService,
                                    IUserProfileService userProfileService,
                                    ICommoditySourceService commoditySourceService,
                                    IGiftCertificateService giftCertificateService,
                                    ICommodityService commodityService,
                                    IDonorService donorService,
                                    IGiftCertificateDetailService giftCertificateDetailService,
                                    IHubService hubService,
                                    IProgramService programService,
                                    ICommodityTypeService commodityTypeService)
 {
     this._receiptAllocationService     = receiptAllocationService;
     this._userProfileService           = userProfileService;
     this._commoditySourceService       = commoditySourceService;
     this._giftCertificateService       = giftCertificateService;
     this._commodityService             = commodityService;
     this._donorService                 = donorService;
     this._giftCertificateDetailService = giftCertificateDetailService;
     this._hubService           = hubService;
     this._programService       = programService;
     this._commodityTypeService = commodityTypeService;
 }
Example #8
0
 public CommoditySourceController(ICommoditySourceService commoditySourceService)
 {
     _commoditySourceService = commoditySourceService;
 }
 public CommoditySourceController(ICommoditySourceService commodityGradeService,IUserProfileService userProfileService)
     : base(userProfileService)
 {
     _commoditySourceService = commodityGradeService;
 }
Example #10
0
 public CommoditySourceController(ICommoditySourceService commodityGradeService, IUserProfileService userProfileService) : base(userProfileService)
 {
     _commoditySourceService = commodityGradeService;
 }
Example #11
0
 public CommoditySourceController(ICommoditySourceService commoditySourceService)
 {
     _commoditySourceService = commoditySourceService;
 }