Esempio n. 1
0
 public DonationController(
     IReceiptAllocationService receiptAllocationService,
     ICommodityService commodityService,
     ICommonService commonService,
     IShippingInstructionService shippingInstructionService, 
     GiftCertificateService giftCertificateService, 
     ICommodityTypeService commodityTypeService, 
     IHubService hubService, 
     IDonationPlanDetailService donationPlanDetailService, 
     IDonationPlanHeaderService donationPlanHeaderService, ITransactionService transactionService)
 {
     _receiptAllocationService = receiptAllocationService;
     _commodityService = commodityService;
     _commonService = commonService;
     _shippingInstructionService = shippingInstructionService;
        _giftCertificateService = giftCertificateService;
     _commodityTypeService = commodityTypeService;
     _hubService = hubService;
     _donationPlanDetailService = donationPlanDetailService;
     _donationPlanHeaderService = donationPlanHeaderService;
     _transactionService = transactionService;
 }
Esempio n. 2
0
 public DonationController(
     IReceiptAllocationService receiptAllocationService,
     ICommodityService commodityService,
     ICommonService commonService,
     IShippingInstructionService shippingInstructionService,
     GiftCertificateService giftCertificateService,
     ICommodityTypeService commodityTypeService,
     IHubService hubService,
     IDonationPlanDetailService donationPlanDetailService,
     IDonationPlanHeaderService donationPlanHeaderService, ITransactionService transactionService, ILog log)
 {
     _receiptAllocationService   = receiptAllocationService;
     _commodityService           = commodityService;
     _commonService              = commonService;
     _shippingInstructionService = shippingInstructionService;
     _giftCertificateService     = giftCertificateService;
     _commodityTypeService       = commodityTypeService;
     _hubService = hubService;
     _donationPlanDetailService = donationPlanDetailService;
     _donationPlanHeaderService = donationPlanHeaderService;
     _transactionService        = transactionService;
     _log = log;
 }