public AcumaticaOrderGet(
     AcumaticaOrderRepository orderRepository,
     AcumaticaTimeZoneService timeZoneService,
     AcumaticaBatchRepository batchStateRepository,
     AcumaticaHttpConfig acumaticaHttpConfig,
     SettingsRepository settingsRepository,
     SalesOrderClient salesOrderClient,
     ShipmentClient shipmentClient,
     InvoiceClient invoiceClient,
     ExecutionLogService executionLogService,
     JobMonitoringService jobMonitoringService,
     AcumaticaJsonService acumaticaJsonService)
 {
     _orderRepository      = orderRepository;
     _timeZoneService      = timeZoneService;
     _batchStateRepository = batchStateRepository;
     _acumaticaHttpConfig  = acumaticaHttpConfig;
     _salesOrderClient     = salesOrderClient;
     _settingsRepository   = settingsRepository;
     _shipmentClient       = shipmentClient;
     _invoiceClient        = invoiceClient;
     _executionLogService  = executionLogService;
     _jobMonitoringService = jobMonitoringService;
     _acumaticaJsonService = acumaticaJsonService;
 }
 public AcumaticaInventoryGet(
     DistributionClient inventoryClient,
     AcumaticaInventoryRepository inventoryRepository,
     AcumaticaBatchRepository batchStateRepository,
     AcumaticaTimeZoneService instanceTimeZoneService,
     AcumaticaJsonService acumaticaJsonService,
     ExecutionLogService executionLogService,
     AcumaticaHttpConfig config)
 {
     _inventoryClient         = inventoryClient;
     _inventoryRepository     = inventoryRepository;
     _batchStateRepository    = batchStateRepository;
     _executionLogService     = executionLogService;
     _instanceTimeZoneService = instanceTimeZoneService;
     _acumaticaJsonService    = acumaticaJsonService;
     _config = config;
 }
 public AcumaticaCustomerGet(
     CustomerClient customerClient,
     AcumaticaOrderRepository orderRepository,
     AcumaticaBatchRepository batchStateRepository,
     AcumaticaTimeZoneService instanceTimeZoneService,
     SettingsRepository settingsRepository,
     JobMonitoringService jobMonitoringService,
     AcumaticaHttpConfig config, AcumaticaJsonService acumaticaJsonService)
 {
     _customerClient          = customerClient;
     _orderRepository         = orderRepository;
     _batchStateRepository    = batchStateRepository;
     _instanceTimeZoneService = instanceTimeZoneService;
     _settingsRepository      = settingsRepository;
     _jobMonitoringService    = jobMonitoringService;
     _config = config;
     _acumaticaJsonService = acumaticaJsonService;
 }
 public CustomerClient(AcumaticaHttpContext httpContext, AcumaticaHttpConfig config)
 {
     _httpContext = httpContext;
     _config      = config;
 }
Beispiel #5
0
 public ShipmentClient(AcumaticaHttpContext httpContext, AcumaticaHttpConfig config)
 {
     _httpContext = httpContext;
     _config      = config;
 }
Beispiel #6
0
 public InvoiceClient(IPushLogger logger, AcumaticaHttpContext httpContext, AcumaticaHttpConfig config)
 {
     _logger      = logger;
     _httpContext = httpContext;
     _config      = config;
 }
Beispiel #7
0
 public SalesOrderClient(AcumaticaHttpContext httpContext, AcumaticaHttpConfig config)
 {
     _httpContext = httpContext;
     _config      = config;
 }
Beispiel #8
0
 public AcumaticaHttpContext(AcumaticaHttpConfig settings, IPushLogger logger)
 {
     _settings = settings;
     _logger   = logger;
 }