コード例 #1
0
 public ShopifyTransactionGet(
     ShopifyOrderRepository orderRepository,
     ShopifyJsonService shopifyJsonService,
     ExecutionLogService logService,
     OrderApi orderApi)
 {
     _shopifyJsonService = shopifyJsonService;
     _orderRepository    = orderRepository;
     _logService         = logService;
     _orderApi           = orderApi;
 }
コード例 #2
0
 public ShopifyCustomerGet(
     CustomerApi customerApi,
     ShopifyOrderRepository orderRepository,
     ShopifyBatchRepository batchRepository,
     SettingsRepository settingsRepository,
     JobMonitoringService jobMonitoringService,
     ShopifyJsonService shopifyJsonService)
 {
     _customerApi          = customerApi;
     _orderRepository      = orderRepository;
     _batchRepository      = batchRepository;
     _settingsRepository   = settingsRepository;
     _jobMonitoringService = jobMonitoringService;
     _shopifyJsonService   = shopifyJsonService;
 }
コード例 #3
0
 public AnalysisController(
     ExecutionLogService logRepository,
     AnalysisDataService analysisDataService,
     PendingActionService pendingActionService,
     InstanceContext instanceContext,
     ShopifyOrderRepository shopifyOrderRepository,
     ShopifyUrlService shopifyUrlService,
     ShopifyJsonService shopifyJsonService)
 {
     _logRepository          = logRepository;
     _analysisDataService    = analysisDataService;
     _pendingActionService   = pendingActionService;
     _instanceContext        = instanceContext;
     _shopifyOrderRepository = shopifyOrderRepository;
     _shopifyUrlService      = shopifyUrlService;
     _shopifyJsonService     = shopifyJsonService;
 }
コード例 #4
0
 public ShopifyFulfillmentPut(
     ShopifyOrderRepository shopifyOrderRepository,
     SyncOrderRepository syncOrderRepository,
     SyncInventoryRepository syncInventoryRepository,
     FulfillmentApi fulfillmentApi,
     ExecutionLogService logService,
     FulfillmentStatusService fulfillmentStatusService,
     IPushLogger pushLogger, JobMonitoringService jobMonitoringService,
     ShopifyJsonService shopifyJsonService)
 {
     _shopifyOrderRepository  = shopifyOrderRepository;
     _syncOrderRepository     = syncOrderRepository;
     _syncInventoryRepository = syncInventoryRepository;
     _fulfillmentApi          = fulfillmentApi;
     _logService = logService;
     _fulfillmentStatusService = fulfillmentStatusService;
     _pushLogger           = pushLogger;
     _jobMonitoringService = jobMonitoringService;
     _shopifyJsonService   = shopifyJsonService;
 }
コード例 #5
0
 public ShopifyOrderGet(
     ShopifyOrderRepository orderRepository,
     ShopifyBatchRepository batchRepository,
     SettingsRepository settingsRepository,
     ShopifyCustomerGet shopifyCustomerPull,
     ShopifyTransactionGet shopifyTransactionGet,
     JobMonitoringService jobMonitoringService,
     ExecutionLogService executionLogService,
     ShopifyJsonService shopifyJsonService,
     OrderApi orderApi)
 {
     _orderRepository       = orderRepository;
     _batchRepository       = batchRepository;
     _settingsRepository    = settingsRepository;
     _shopifyCustomerPull   = shopifyCustomerPull;
     _shopifyTransactionGet = shopifyTransactionGet;
     _jobMonitoringService  = jobMonitoringService;
     _executionLogService   = executionLogService;
     _shopifyJsonService    = shopifyJsonService;
     _orderApi = orderApi;
 }