Beispiel #1
0
 public UserOrdersPartDriver(IWebStoreServices webStoreServices, IUserOrdersServices userOrdersServices, IOrchardServices orchardServices)
 {
     this._orchardServices    = orchardServices;
     this._localizer          = NullLocalizer.Instance;
     this._webStoreServices   = webStoreServices;
     this._userOrdersServices = userOrdersServices;
 }
 public UserController(IWebStoreServices webStoreServices, IOrchardServices orchardServices, IShapeFactory shapeFactory, IUserOrdersServices userOrdersServices)
 {
     this._userOrdersServices = userOrdersServices;
     this._webStoreServices = webStoreServices;
     this._orchardServices = orchardServices;
     this._shapeFactory = shapeFactory;
     this._localizer = NullLocalizer.Instance;
 }
Beispiel #3
0
 public UserController(IWebStoreServices webStoreServices, IOrchardServices orchardServices, IUserOrdersServices userOrdersServices, IEnumerable <IAddressEventHandler> addressEventHandlers, IShapeFactory shapeFactory)
 {
     this._shapeFactory         = shapeFactory;
     this._orchardServices      = orchardServices;
     this._localizer            = NullLocalizer.Instance;
     this._webStoreServices     = webStoreServices;
     this._userOrdersServices   = userOrdersServices;
     this._addressEventHandlers = addressEventHandlers;
 }