Example #1
0
 public OrderController(IWebStoreConfigurationService webStoreConfigurationServices, IBasketServices basketServices, IWebStoreProfileServices webstoreProfileServices)
 {
     this.T = NullLocalizer.Instance;
     this._basketServices = basketServices;
     this._webstoreProfileServices = webstoreProfileServices;
     this._webStoreConfigurationServices = webStoreConfigurationServices;
 }
 public BasketController(IWebStoreConfigurationService webStoreConfigurationServices, IBasketServices basketServices, IWebStoreProfileServices webStoreProfileServices)
 {
     this._webStoreConfigurationServices = webStoreConfigurationServices;
     this._basketServices = basketServices;
     this._webStoreProfileServices = webStoreProfileServices;
 }
Example #3
0
 public BasketServices(IWebStoreConfigurationService webStoreConfigurationServices, IWebStoreProfileServices webStoreProfileServices)
 {
     this._webStoreConfigurationServices = webStoreConfigurationServices;
     this._webStoreProfileServices = webStoreProfileServices;
 }