Example #1
0
 public ProductController(CaptchaSettings captchaSettings,
                          CatalogSettings catalogSettings,
                          IAclService aclService,
                          ICompareProductsService compareProductsService,
                          ICustomerActivityService customerActivityService,
                          IEventPublisher eventPublisher,
                          ILocalizationService localizationService,
                          IOrderService orderService,
                          IPermissionService permissionService,
                          IProductModelFactory productModelFactory,
                          IAppointmentModelFactory appointmentModelFactory,
                          IProductService productService,
                          IAppointmentService appointmentService,
                          //IRecentlyViewedProductsService recentlyViewedProductsService,
                          IShoppingCartService shoppingCartService,
                          IStoreContext storeContext,
                          IStoreMappingService storeMappingService,
                          IUrlRecordService urlRecordService,
                          IWebHelper webHelper,
                          IDateTimeHelper dateTimeHelper,
                          IWorkContext workContext,
                          IWorkflowMessageService workflowMessageService,
                          LocalizationSettings localizationSettings,
                          ShoppingCartSettings shoppingCartSettings)
 {
     _captchaSettings         = captchaSettings;
     _catalogSettings         = catalogSettings;
     _aclService              = aclService;
     _compareProductsService  = compareProductsService;
     _customerActivityService = customerActivityService;
     _eventPublisher          = eventPublisher;
     _localizationService     = localizationService;
     _orderService            = orderService;
     _permissionService       = permissionService;
     _productModelFactory     = productModelFactory;
     _appointmentModelFactory = appointmentModelFactory;
     _productService          = productService;
     _appointmentService      = appointmentService;
     //_recentlyViewedProductsService = recentlyViewedProductsService;
     _shoppingCartService    = shoppingCartService;
     _storeContext           = storeContext;
     _storeMappingService    = storeMappingService;
     _urlRecordService       = urlRecordService;
     _webHelper              = webHelper;
     _dateTimeHelper         = dateTimeHelper;
     _workContext            = workContext;
     _workflowMessageService = workflowMessageService;
     _localizationSettings   = localizationSettings;
     _shoppingCartSettings   = shoppingCartSettings;
 }
Example #2
0
 public SwitchboardController(
     IAppointmentModelFactory AppointmentModelFactory,
     IAppointmentService AppointmentService,
     ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService,
     IPermissionService permissionService,
     IWorkContext workContext)
 {
     _AppointmentModelFactory = AppointmentModelFactory;
     _AppointmentService      = AppointmentService;
     _localizedEntityService  = localizedEntityService;
     _localizationService     = localizationService;
     _permissionService       = permissionService;
     _workContext             = workContext;
 }
Example #3
0
 public CatalogController(CatalogSettings catalogSettings,
                          IAclService aclService,
                          ICatalogModelFactory catalogModelFactory,
                          ICategoryService categoryService,
                          ICustomerActivityService customerActivityService,
                          IGenericAttributeService genericAttributeService,
                          ILocalizationService localizationService,
                          IManufacturerService manufacturerService,
                          IPermissionService permissionService,
                          IProductModelFactory productModelFactory,
                          IProductService productService,
                          IProductTagService productTagService,
                          IStoreContext storeContext,
                          IStoreMappingService storeMappingService,
                          IVendorService vendorService,
                          IWebHelper webHelper,
                          IWorkContext workContext,
                          MediaSettings mediaSettings,
                          VendorSettings vendorSettings,
                          IDateTimeHelper dateTimeHelper,
                          IAppointmentModelFactory appointmentModelFactory,
                          IAppointmentService appointmentService)
 {
     _catalogSettings         = catalogSettings;
     _aclService              = aclService;
     _catalogModelFactory     = catalogModelFactory;
     _categoryService         = categoryService;
     _customerActivityService = customerActivityService;
     _genericAttributeService = genericAttributeService;
     _localizationService     = localizationService;
     _manufacturerService     = manufacturerService;
     _permissionService       = permissionService;
     _productModelFactory     = productModelFactory;
     _productService          = productService;
     _productTagService       = productTagService;
     _storeContext            = storeContext;
     _storeMappingService     = storeMappingService;
     _vendorService           = vendorService;
     _webHelper               = webHelper;
     _workContext             = workContext;
     _mediaSettings           = mediaSettings;
     _vendorSettings          = vendorSettings;
     _dateTimeHelper          = dateTimeHelper;
     _appointmentService      = appointmentService;
     _appointmentModelFactory = appointmentModelFactory;
 }