Exemple #1
0
 public LightspeedInventoryService(LightspeedConfig config)
 {
     _webRequestServices = new WebRequestService(config);
 }
 public ILightspeedShopService CreateShopsService(LightspeedConfig config)
 {
     return(new LightspeedShopService(config));
 }
Exemple #3
0
 public WebRequestService(LightspeedConfig config)
 {
     _config = config;
 }
 public ILightspeedOrdersService CreateOrdersService(LightspeedConfig config)
 {
     return(new LightspeedOrdersService(config));
 }
 public LightspeedShopService(LightspeedConfig config)
 {
     _webRequestServices = new WebRequestService(config);
 }