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 OnlinePaymentController(ITempcartService tempcartService, ICustomerRepository customerRepository, IProspectCustomerService prospectCustomerService
                                , IEligibilityService eligibilityService, IChargeCardRepository chargeCardRepository, IEventSchedulerService eventSchedulerService, IConfigurationSettingRepository configurationSettingRepository
                                , ISettings settings, IValidator <PaymentInstrumentEditModel> paymentValidator, IEventSchedulingSlotService slotService, IAddressService addressService, IStateRepository stateRepository
                                , ICustomerService customerService, IPaymentController paymentController, ICorporateAccountRepository corporateAccountRepository, IEmailNotificationModelsFactory emailNotificationModelsFactory
                                , IEventRepository eventRepository, ICustomerRegistrationService customerRegistrationService, INotifier notifier, ICallQueueCustomerRepository callQueueCustomerRepository, IEventSchedulingSlotService eventSchedulingSlotService, IGiftCertificateService giftCertificateService, IUniqueItemRepository <ProspectCustomer> uniqueItemRepository, IToolTipRepository toolTipRepository
                                )
 {
     _tempcartService         = tempcartService;
     _customerRepository      = customerRepository;
     _prospectCustomerService = prospectCustomerService;
     _eligibilityService      = eligibilityService;
     _chargeCardRepository    = chargeCardRepository;
     _eventSchedulerService   = eventSchedulerService;
     _settings                       = settings;
     _paymentValidator               = paymentValidator;
     _slotService                    = slotService;
     _addressService                 = addressService;
     _stateRepository                = stateRepository;
     _customerService                = customerService;
     _paymentController              = paymentController;
     _corporateAccountRepository     = corporateAccountRepository;
     _emailNotificationModelsFactory = emailNotificationModelsFactory;
     _eventRepository                = eventRepository;
     _customerRegistrationService    = customerRegistrationService;
     _notifier                       = notifier;
     _callQueueCustomerRepository    = callQueueCustomerRepository;
     _eventSchedulingSlotService     = eventSchedulingSlotService;
     _giftCertificateService         = giftCertificateService;
     _configurationSettingRepository = configurationSettingRepository;
     _enableTexting                  = Convert.ToBoolean(configurationSettingRepository.GetConfigurationValue(ConfigurationSettingName.EnableSmsNotification));
     _prospectCustomerRepository     = uniqueItemRepository;
     _toolTipRepository              = toolTipRepository;
 }
Example #3
0
 public LocalPurchaseController(ILocalPurchaseService localPurchaseService, ICommonService commonService, ILocalPurchaseDetailService localPurchaseDetailService,
                                IGiftCertificateService giftCertificateService, IShippingInstructionService shippingInstructionService)
 {
     _localPurchaseService       = localPurchaseService;
     _commonService              = commonService;
     _localPurchaseDetailService = localPurchaseDetailService;
     _giftCertificateService     = giftCertificateService;
     _shippingInstructionService = shippingInstructionService;
 }
 public LocalPurchaseController( ILocalPurchaseService localPurchaseService,ICommonService commonService,ILocalPurchaseDetailService localPurchaseDetailService,
                                 IGiftCertificateService giftCertificateService,IShippingInstructionService shippingInstructionService)
 {
     _localPurchaseService = localPurchaseService;
     _commonService = commonService;
     _localPurchaseDetailService = localPurchaseDetailService;
     _giftCertificateService = giftCertificateService;
     _shippingInstructionService = shippingInstructionService;
 }
Example #5
0
 public GiftCertificateController(IGiftCertificateService giftCertificateService, IGiftCertificateDetailService giftCertificateDetailService,
                                  ICommonService commonService, ITransactionService transactionService, ILetterTemplateService letterTemplateService,
                                  IUnitOfWork unitofwork,IUserAccountService userAccountService,IShippingInstructionService shippingInstructionService)
 {
     _giftCertificateService = giftCertificateService;
     _giftCertificateDetailService = giftCertificateDetailService;
     _commonService = commonService;
     _transactionService = transactionService;
     _letterTemplateService = letterTemplateService;
     _unitofwork = unitofwork;
     _userAccountService = userAccountService;
     _shippingInstructionService = shippingInstructionService;
 }
 public GiftCertificateController(IGiftCertificateService giftCertificateService, IGiftCertificateDetailService giftCertificateDetailService,
                                  ICommonService commonService, ITransactionService transactionService, ILetterTemplateService letterTemplateService,
                                  IUnitOfWork unitofwork, IUserAccountService userAccountService, IShippingInstructionService shippingInstructionService)
 {
     _giftCertificateService       = giftCertificateService;
     _giftCertificateDetailService = giftCertificateDetailService;
     _commonService              = commonService;
     _transactionService         = transactionService;
     _letterTemplateService      = letterTemplateService;
     _unitofwork                 = unitofwork;
     _userAccountService         = userAccountService;
     _shippingInstructionService = shippingInstructionService;
 }
        public CustomerPaymentService(ISettings settings, IOrderRepository orderRepository, ICustomerRepository customerRepository,
                                      ISessionContext sessionContext, IGiftCertificateService giftCertificateService, IEventSchedulerService eventSchedulerService,
                                      IEventCustomerRepository eventCustomerRepository, IPaymentController paymentController)
        {
            _settings           = settings;
            _orderRepository    = orderRepository;
            _customerRepository = customerRepository;
            _sessionContext     = sessionContext;


            _giftCertificateService  = giftCertificateService;
            _eventSchedulerService   = eventSchedulerService;
            _eventCustomerRepository = eventCustomerRepository;
            _paymentController       = paymentController;
        }
 public GiftCertificateController(
     IGiftCertificateService giftCertificateService,
     ICommodityService commodityService,
    IUserProfileService userProfileService,
     IReceiptAllocationService receiptAllocationService,
     IDetailService detailService,
     ICommodityTypeService commodityTypeService,
    IDonorService donorService,
     IProgramService programService,
     IGiftCertificateDetailService giftCertificateDetailService)
 {
     _giftCertificateService = giftCertificateService;
     _commodityService = commodityService;
     _userProfileService = userProfileService;
     _receiptAllocationService = receiptAllocationService;
     _detailService = detailService;
     _commodityTypeService = commodityTypeService;
     _donorService = donorService;
     _programService = programService;
     _giftCertificateDetailService = giftCertificateDetailService;
 }
 public GiftCertificateController(
     IGiftCertificateService giftCertificateService,
     ICommodityService commodityService,
     IUserProfileService userProfileService,
     IReceiptAllocationService receiptAllocationService,
     IDetailService detailService,
     ICommodityTypeService commodityTypeService,
     IDonorService donorService,
     IProgramService programService,
     IGiftCertificateDetailService giftCertificateDetailService)
 {
     _giftCertificateService       = giftCertificateService;
     _commodityService             = commodityService;
     _userProfileService           = userProfileService;
     _receiptAllocationService     = receiptAllocationService;
     _detailService                = detailService;
     _commodityTypeService         = commodityTypeService;
     _donorService                 = donorService;
     _programService               = programService;
     _giftCertificateDetailService = giftCertificateDetailService;
 }
 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;
 }