Ejemplo n.º 1
0
 public CommonController(
     CommonSettings commonSettings,
     ICommonModelFactory commonModelFactory,
     ICustomerActivityService customerActivityService,
     ILogger logger, IEmailSender emailSender, IEmailAccountService emailAccountService, EmailAccountSettings emailAccountSettings, INewsService newsService, INewsModelFactory newsModelFactory, IPictureService pictureService, IGalleryFactory galleryFactory, IGalleryService galleryService)
 {
     this._commonSettings          = commonSettings;
     this._commonModelFactory      = commonModelFactory;
     this._customerActivityService = customerActivityService;
     this._logger          = logger;
     _emailSender          = emailSender;
     _emailAccountService  = emailAccountService;
     _emailAccountSettings = emailAccountSettings;
     _newsService          = newsService;
     _newsModelFactory     = newsModelFactory;
     _pictureService       = pictureService;
     _galleryFactory       = galleryFactory;
     _galleryService       = galleryService;
 }
Ejemplo n.º 2
0
 public CatalogModelFactory(
     CatalogSettings catalogSettings,
     ICategoryService categoryService,
     ICategoryTemplateService categoryTemplateService,
     IStoreContext storeContext,
     IUrlRecordService urlRecordService,
     IWebHelper webHelper,
     INewsService newsService, INewsModelFactory newsModelFactory, IVideoFactory videoFactory, IGalleryFactory galleryFactory, ISliderFactory sliderFactory, IPictureService pictureService, IHttpContextAccessor httpContextAccessor)
 {
     this._catalogSettings         = catalogSettings;
     this._categoryService         = categoryService;
     this._categoryTemplateService = categoryTemplateService;
     this._storeContext            = storeContext;
     this._urlRecordService        = urlRecordService;
     this._webHelper      = webHelper;
     _newsService         = newsService;
     _newsModelFactory    = newsModelFactory;
     _videoFactory        = videoFactory;
     _galleryFactory      = galleryFactory;
     _sliderFactory       = sliderFactory;
     _pictureService      = pictureService;
     _httpContextAccessor = httpContextAccessor;
 }
Ejemplo n.º 3
0
 public PhotoController(IGalleryFactory galleryFactory, IGalleryService galleryService)
 {
     _galleryFactory = galleryFactory;
     _galleryService = galleryService;
 }
Ejemplo n.º 4
0
 public GalleryViewComponent(IGalleryFactory galleryFactory, IGalleryService galleryService)
 {
     _galleryFactory = galleryFactory;
     _galleryService = galleryService;
 }