public CommerceController(ICommerceService commerceService, ICustomerOrderService customerOrderService, IStoreService storeService, ISeoDuplicatesDetector seoDuplicateDetector)
 {
     _commerceService = commerceService;
     _customerOrderService = customerOrderService;
     _storeService = storeService;
     _seoDuplicateDetector = seoDuplicateDetector;
 }
예제 #2
0
 public ProfileController(ApplicationUserManager userManager, ICustomerService customerService, 
     IMerchantService merchantServie, ICustomerOrderService customerOrderService)
 {
     _customerService = customerService;
     _merchantServie = merchantServie;
     _customerOrderService = customerOrderService;
     UserManager = userManager;
 }
		public OrderModuleController(ICustomerOrderService customerOrderService, ICustomerOrderSearchService searchService, IStoreService storeService, IOperationNumberGenerator numberGenerator, CacheManager cacheManager, Func<IOrderRepository> repositoryFactory)
        {
            _customerOrderService = customerOrderService;
            _searchService = searchService;
            _operationNumberGenerator = numberGenerator;
            _storeService = storeService;
			_cacheManager = cacheManager;
			_repositoryFactory = repositoryFactory;
        }
        public OrderModuleController(ICustomerOrderService customerOrderService, ICustomerOrderSearchService searchService, IStoreService storeService, IUniqueNumberGenerator numberGenerator, 
                                     CacheManager cacheManager, Func<IOrderRepository> repositoryFactory, IPermissionScopeService permissionScopeService, ISecurityService securityService)
        {
            _customerOrderService = customerOrderService;
            _searchService = searchService;
            _uniqueNumberGenerator = numberGenerator;
            _storeService = storeService;
			_cacheManager = cacheManager;
			_repositoryFactory = repositoryFactory;
            _securityService = securityService;
            _permissionScopeService = permissionScopeService;
        }
예제 #5
0
 public DataFetchController(ICustomerOrderService orderSearchService)
 {
     _orderSearchService = orderSearchService;
 }
예제 #6
0
 public CreateSubscriptionOrderChangedEventHandler(ISubscriptionBuilder subscriptionBuilder, ISubscriptionService subscriptionService, ICustomerOrderService customerOrderService)
 {
     _subscriptionBuilder  = subscriptionBuilder;
     _subscriptionService  = subscriptionService;
     _customerOrderService = customerOrderService;
 }
 public SubscriptionServiceImpl(Func <ISubscriptionRepository> subscriptionRepositoryFactory, ICustomerOrderService customerOrderService, ICustomerOrderSearchService customerOrderSearchService,
                                IStoreService storeService, IUniqueNumberGenerator uniqueNumberGenerator, IChangeLogService changeLogService, IEventPublisher eventPublisher)
 {
     _customerOrderSearchService    = customerOrderSearchService;
     _subscriptionRepositoryFactory = subscriptionRepositoryFactory;
     _customerOrderService          = customerOrderService;
     _storeService          = storeService;
     _uniqueNumberGenerator = uniqueNumberGenerator;
     _changeLogService      = changeLogService;
     _eventPublisher        = eventPublisher;
 }
예제 #8
0
 public OrdersController(ICustomerOrderService service)
 {
     _service = service;
 }
 public CustomerOrderBuilderImpl(ICustomerOrderService customerOrderService)
 {
     _customerOrderService = customerOrderService;
 }
예제 #10
0
 public CustomerController(ICustomerService customerService, ICustomerOrderService customerOrderService)
 {
     _customerService = customerService;
     _customerOrderService = customerOrderService;
 }
 public AuthorizeNetController(ICustomerOrderService customerOrderService, IStoreService storeService)
 {
     _customerOrderService = customerOrderService;
     _storeService         = storeService;
 }
예제 #12
0
 public CommerceController(ICommerceService commerceService, ICustomerOrderService customerOrderService, IStoreService storeService)
 {
     _commerceService      = commerceService;
     _customerOrderService = customerOrderService;
     _storeService         = storeService;
 }
예제 #13
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="logger">Logger object</param>
 /// <param name="customerOrderService">Interface object of CustomerService</param>
 public OrdersController(ILogger <OrdersController> logger, ICustomerOrderService customerOrderService)
 {
     _logger = logger;
     _customerOrderService = customerOrderService;
 }
예제 #14
0
 public CancelPaymentOrderChangedEventHandler(IStoreService storeService, ICustomerOrderService customerOrderService)
 {
     _storeService = storeService;
     _orderService = customerOrderService;
 }
예제 #15
0
 public OrderExportImport(ICustomerOrderSearchService customerOrderSearchService, ICustomerOrderService customerOrderService, JsonSerializer jsonSerializer)
 {
     _customerOrderSearchService = customerOrderSearchService;
     _customerOrderService       = customerOrderService;
     _jsonSerializer             = jsonSerializer;
 }
예제 #16
0
 public CartController(IWorkContextAccessor workContextAccessor, IStorefrontUrlBuilder urlBuilder, IOrderModule orderApi, ICustomerOrderService orderService)
     : base(workContextAccessor, urlBuilder)
 {
     _orderApi     = orderApi;
     _orderService = orderService;
 }
 public OrderExportImport(ICustomerOrderSearchService customerOrderSearchService, ICustomerOrderService customerOrderService)
 {
     _customerOrderSearchService = customerOrderSearchService;
     _customerOrderService = customerOrderService;
 }
 public SubscriptionModuleController(ISubscriptionService subscriptionService, ISubscriptionSearchService subscriptionSearchService, IPaymentPlanService planService,
                                     ISubscriptionBuilder subscriptionBuilder, ICustomerOrderService customerOrderService)
 {
     _subscriptionService       = subscriptionService;
     _subscriptionSearchService = subscriptionSearchService;
     _planService          = planService;
     _subscriptionBuilder  = subscriptionBuilder;
     _customerOrderService = customerOrderService;
 }
예제 #19
0
 public CustomerOrderBuilderImpl(ICustomerOrderService customerOrderService, IStoreService storeService)
     : this(customerOrderService)
 {
 }
예제 #20
0
 public OrderFormService(ITranslationsRepository translationRepository, ISupplierService supplierService,
                         ICustomerService customerService, IUserAccountService accountService, ICustomerOrderService customerOrderService,
                         IOrderFormHistoryRepository typeFormOrdersLogRepository)
 {
     _translationRepository       = translationRepository ?? throw new ArgumentNullException(nameof(translationRepository));
     _supplierService             = supplierService ?? throw new ArgumentNullException(nameof(supplierService));
     _customerService             = customerService ?? throw new ArgumentNullException(nameof(customerService));
     _accountService              = accountService ?? throw new ArgumentNullException(nameof(accountService));
     _customerOrderService        = customerOrderService ?? throw new ArgumentNullException(nameof(customerOrderService));
     _typeFormOrdersLogRepository = typeFormOrdersLogRepository ?? throw new ArgumentNullException(nameof(typeFormOrdersLogRepository));
 }
예제 #21
0
		public CommerceController(ICommerceService commerceService, ICustomerOrderService customerOrderService, IStoreService storeService)
		{
			_commerceService = commerceService;
			_customerOrderService = customerOrderService;
			_storeService = storeService;
		}
예제 #22
0
 public HomeController(ICustomerOrderService service)
 {
     this.service = service;
 }
예제 #23
0
 public DibsController(ICustomerOrderService customerOrderService, IStoreService storeService)
 {
     _customerOrderService = customerOrderService;
     _storeService = storeService;
 }
예제 #24
0
 public OrderExportImport(ICustomerOrderSearchService customerOrderSearchService, ICustomerOrderService customerOrderService)
 {
     _customerOrderSearchService = customerOrderSearchService;
     _customerOrderService       = customerOrderService;
 }
 public CustomerOrdersController(ICustomerOrderService customerOrderService)
 {
     _customerOrderService = customerOrderService;
 }
 public UpdateOrderShipmentDynamicPropertiesCommandHandler(ICustomerOrderService customerOrderService, ICustomerOrderAggregateRepository customerOrderAggregateRepository)
 {
     _customerOrderService             = customerOrderService;
     _customerOrderAggregateRepository = customerOrderAggregateRepository;
 }
예제 #27
0
 public AccountController(ICustomerService customerService,
                          IAuthenticationService authenticationService, IFreightService freightService, ICustomerOrderService customerOrderService, IWorkContext workContext)
 {
     _customerService       = customerService;
     _authenticationService = authenticationService;
     _freightService        = freightService;
     _customerOrderService  = customerOrderService;
     _workContext           = workContext;
 }
 public CustomerOrderSearchService(Func <IOrderRepository> repositoryFactory, ICustomerOrderService customerOrderService, IPlatformMemoryCache platformMemoryCache)
 {
     _repositoryFactory    = repositoryFactory;
     _platformMemoryCache  = platformMemoryCache;
     _customerOrderService = customerOrderService;
 }
 public CustomerOrderBuilderExtImpl(ICustomerOrderService customerOrderService, IStoreService storeService) : base(customerOrderService, storeService)
 {
     _storeService         = storeService;
     _customerOrderService = customerOrderService;
 }
 public DataFetchController(ICustomerOrderService orderSearchService)
 {
     _orderSearchService = orderSearchService;
 }
 public ShipstationController(ICustomerOrderService orderService, ICustomerOrderSearchService orderSearchService)
 {
     _orderSearchService = orderSearchService;
     _orderService       = orderService;
 }
 public ShipstationController(ICustomerOrderService orderService, ICustomerOrderSearchService orderSearchService)
 {
     _orderSearchService = orderSearchService;
     _orderService = orderService;
 }
 public AuthorizeNetController(ICustomerOrderService customerOrderService, IStoreService storeService)
 {
     _customerOrderService = customerOrderService;
     _storeService = storeService;
 }