public OrderController(IWebStoreConfigurationService webStoreConfigurationServices, IBasketServices basketServices, IWebStoreProfileServices webstoreProfileServices)
 {
     this.T = NullLocalizer.Instance;
     this._basketServices = basketServices;
     this._webstoreProfileServices = webstoreProfileServices;
     this._webStoreConfigurationServices = webStoreConfigurationServices;
 }
 public AdminController(IOrchardServices orchardServices, INotifier notifier, IContentManager contentManager, IWebStoreConfigurationService configurationService)
 {
     this._configurationService = configurationService;
     this._contentManager = contentManager;
     this._orchardServices = orchardServices;
     this.T = NullLocalizer.Instance;
     this._notifier = notifier;
 }
 public WebStoreProfileService(IWebStoreConfigurationService service)
 {
     this._service = service;
 }
 public BasketController(IWebStoreConfigurationService webStoreConfigurationServices, IBasketServices basketServices, IWebStoreProfileServices webStoreProfileServices)
 {
     this._webStoreConfigurationServices = webStoreConfigurationServices;
     this._basketServices = basketServices;
     this._webStoreProfileServices = webStoreProfileServices;
 }
 public BasketServices(IWebStoreConfigurationService webStoreConfigurationServices, IWebStoreProfileServices webStoreProfileServices)
 {
     this._webStoreConfigurationServices = webStoreConfigurationServices;
     this._webStoreProfileServices = webStoreProfileServices;
 }