Esempio n. 1
0
 public ShopifyLocationFilesReader(IShopifyLocationStorage storage, ILogger <ShopifyLocationFilesReader> logger) : base(storage, "locations", logger)
 {
 }
Esempio n. 2
0
 public Orders(IShopifyOrderStorage orderStorage, IShopifyLocationStorage shopifyLocationStorage, IOptions <ShopInstanceOptions> optionsAccessor)
 {
     _orderStorage           = orderStorage;
     _shopifyLocationStorage = shopifyLocationStorage;
     _timeZone = optionsAccessor.Value.TimeZoneInfo;
 }
 public LocationShopifyFetchAndStoreService(IOptions <StoreOptions> optionsAccessor, IShopifyLocationFetcher fetcher,
                                            IShopifyLocationStorage storage, IShopifyLocationFilesWriter filesWriter, ILogger <LocationShopifyFetchAndStoreService> logger) : base(optionsAccessor, fetcher, storage,
                                                                                                                                                                                   filesWriter, "locations", Location => Location.UpdatedAt, logger)
 {
 }
Esempio n. 4
0
 public Index(IShopifyOrderStorage shopifyOrderStorage, IShopifyLocationStorage shopifyLocationStorage)
 {
     _shopifyOrderStorage    = shopifyOrderStorage;
     _shopifyLocationStorage = shopifyLocationStorage;
 }