Exemple #1
0
 public PayoutApi(
     IPushLogger logger,
     ShopifyHttpContext httpClient)
 {
     _logger     = logger;
     _httpClient = httpClient;
 }
Exemple #2
0
 public InstanceContext(
     MasterRepository systemRepository,
     ProcessPersistContext processPersistContext,
     MiscPersistContext miscPersistContext,
     CredentialsRepository connectionRepository,
     SettingsRepository settingsRepository,
     ShopifyHttpContext shopifyHttpContext,
     StateRepository stateRepository,
     AcumaticaHttpContext acumaticaHttpContext)
 {
     _connectionRepository  = connectionRepository;
     _settingsRepository    = settingsRepository;
     _systemRepository      = systemRepository;
     _processPersistContext = processPersistContext;
     _miscPersistContext    = miscPersistContext;
     _shopifyHttpContext    = shopifyHttpContext;
     _stateRepository       = stateRepository;
     _acumaticaHttpContext  = acumaticaHttpContext;
 }
Exemple #3
0
 public ShopifyAuthController(
     OAuthApi oAuthApi,
     CredentialsRepository connectionRepository,
     InstanceContext connectionContext,
     ShopifyHttpContext shopifyHttpContext,
     IdentityService identityService,
     StateRepository stateRepository,
     HmacCryptoService hmacCrypto,
     ProvisioningService provisioningService,
     IPushLogger logger)
 {
     _provisioningService  = provisioningService;
     _identityService      = identityService;
     _oAuthApi             = oAuthApi;
     _connectionRepository = connectionRepository;
     _connectionContext    = connectionContext;
     _shopifyHttpContext   = shopifyHttpContext;
     _stateRepository      = stateRepository;
     _hmacCrypto           = hmacCrypto;
     _logger = logger;
 }
Exemple #4
0
 public OrderApi(ShopifyHttpContext httpClient)
 {
     _httpClient = httpClient;
 }
Exemple #5
0
 public InventoryApi(IPushLogger logger, ShopifyHttpContext httpClient)
 {
     _logger     = logger;
     _httpClient = httpClient;
 }
Exemple #6
0
 public EventApi(ShopifyHttpContext httpClient)
 {
     _httpClient = httpClient;
 }
Exemple #7
0
 public ProductApi(ShopifyHttpContext client, IPushLogger logger)
 {
     _httpClient = client;
     _logger     = logger;
 }
Exemple #8
0
 public FulfillmentApi(ShopifyHttpContext httpClient)
 {
     _httpClient = httpClient;
 }
Exemple #9
0
 public CustomerApi(IPushLogger logger, ShopifyHttpContext httpClient)
 {
     _logger     = logger;
     _httpClient = httpClient;
 }