예제 #1
0
 public ExistingShopifyDataReader(
     IShopifyOrderFilesReader shopifyOrderReader,
     IShopifyProductFilesReader shopifyProductReader,
     IShopifyCustomerFilesReader shopifyCustomerReader,
     IShopifyMetaFieldFilesReader shopifyMetaFieldReader,
     IShopifyLocationFilesReader shopifyLocationReader,
     IOptions <StoreOptions> optionsAccessor,
     ILogger <ExistingShopifyDataReader> logger)
 {
     _shopifyOrderReader     = shopifyOrderReader;
     _shopifyProductReader   = shopifyProductReader;
     _shopifyCustomerReader  = shopifyCustomerReader;
     _shopifyMetaFieldReader = shopifyMetaFieldReader;
     _shopifyLocationReader  = shopifyLocationReader;
     _logger          = logger;
     _optionsAccessor = optionsAccessor;
 }
예제 #2
0
 public Import(IShopifyOrderStorage shopifyOrderStorage, IShopifyOrderFilesReader reader)
 {
     _shopifyOrderStorage = shopifyOrderStorage;
     _reader = reader;
 }