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; }
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; }