コード例 #1
0
ファイル: PayoutApi.cs プロジェクト: stackthatcode/Monster
 public PayoutApi(
     IPushLogger logger,
     ShopifyHttpContext httpClient)
 {
     _logger     = logger;
     _httpClient = httpClient;
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #4
0
ファイル: OrderApi.cs プロジェクト: stackthatcode/Monster
 public OrderApi(ShopifyHttpContext httpClient)
 {
     _httpClient = httpClient;
 }
コード例 #5
0
 public InventoryApi(IPushLogger logger, ShopifyHttpContext httpClient)
 {
     _logger     = logger;
     _httpClient = httpClient;
 }
コード例 #6
0
ファイル: EventApi.cs プロジェクト: stackthatcode/Monster
 public EventApi(ShopifyHttpContext httpClient)
 {
     _httpClient = httpClient;
 }
コード例 #7
0
ファイル: ProductApi.cs プロジェクト: stackthatcode/Monster
 public ProductApi(ShopifyHttpContext client, IPushLogger logger)
 {
     _httpClient = client;
     _logger     = logger;
 }
コード例 #8
0
 public FulfillmentApi(ShopifyHttpContext httpClient)
 {
     _httpClient = httpClient;
 }
コード例 #9
0
ファイル: CustomerApi.cs プロジェクト: stackthatcode/Monster
 public CustomerApi(IPushLogger logger, ShopifyHttpContext httpClient)
 {
     _logger     = logger;
     _httpClient = httpClient;
 }