public qBoSliderPlugin(IAclService aclService,
                               IGarbageManager garbageManager,
                               IPermissionService permissionService,
                               IPictureService pictureService,
                               ISettingService settingService,
                               ISlideService slideService,
                               IStoreMappingService storeMappingService,
                               IWebHelper webHelper,
                               IWidgetZoneService widgetZoneService,
                               IWidgetZoneSlideService widgetZoneSlideService,
                               IStoreContext storeContext)
        {
            _aclService             = aclService;
            _garbageManager         = garbageManager;
            _permissionService      = permissionService;
            _pictureService         = pictureService;
            _settingService         = settingService;
            _slideService           = slideService;
            _storeMappingService    = storeMappingService;
            _webHelper              = webHelper;
            _widgetZoneService      = widgetZoneService;
            _widgetZoneSlideService = widgetZoneSlideService;

            _storeContext = storeContext;
        }
Beispiel #2
0
        public qBoSliderController(IAclService aclService,
                                   ICustomerService customerService,
                                   ILanguageService languageService,
                                   ILocalizationService localizationService,
                                   ILocalizedEntityService localizedEntityService,
                                   INotificationService notificationService,
                                   IPermissionService permissionService,
                                   IPictureService pictureService,
                                   ISettingService settingService,
                                   ISlideService slideService,
                                   IStoreService storeService,
                                   IStoreMappingService storeMappingService,
                                   IStoreContext storeContext,
                                   IWorkContext workContext)
        {
            this._aclService             = aclService;
            this._customerService        = customerService;
            this._languageService        = languageService;
            this._localizationService    = localizationService;
            this._localizedEntityService = localizedEntityService;
            this._notificationService    = notificationService;
            this._permissionService      = permissionService;
            this._pictureService         = pictureService;
            this._settingService         = settingService;
            this._slideService           = slideService;
            this._storeService           = storeService;
            this._storeMappingService    = storeMappingService;

            this._storeContext = storeContext;
            this._workContext  = workContext;
        }
 public CommonController(INavigationService navigationService, ISlideService slideService, IBannerService bannerService, ISettingService settingService)
 {
     this._navigationService = navigationService;
     this._slideService = slideService;
     this._bannerService = bannerService;
     this._settingService = settingService;
 }
 public HomeController(ISlideService slideService, IMenuService menuService, IProductCategoryService categoryService, ICartService cartService)
 {
     _slideService    = slideService;
     _menuService     = menuService;
     _categoryService = categoryService;
     _cartService     = cartService;
 }
Beispiel #5
0
 public HomeController(ISlideService slideService, IProductService productService, IParentProductCategoryService parentProductCategoryService, IProductCategoryService productCategoryService)
 {
     _productCategoryService       = productCategoryService;
     _parentProductCategoryService = parentProductCategoryService;
     _productService = productService;
     _slideService   = slideService;
 }
Beispiel #6
0
        public PublicModelFactory(IAclService aclService,
                                  ICacheKeyService cacheKeyService,
                                  ICustomerService customerService,
                                  ILocalizationService localizationService,
                                  IPictureService pictureService,
                                  ISettingService settingService,
                                  ISlideService slideService,
                                  IStaticCacheManager staticCacheManager,
                                  IStoreMappingService storeMappingService,
                                  IWidgetZoneService widgetZoneService,
                                  IWidgetZoneSlideService widgetZoneSlideService,
                                  IStoreContext storeContext,
                                  IWorkContext workContext)
        {
            _aclService             = aclService;
            _cacheKeyService        = cacheKeyService;
            _customerService        = customerService;
            _localizationService    = localizationService;
            _pictureService         = pictureService;
            _settingService         = settingService;
            _slideService           = slideService;
            _staticCacheManager     = staticCacheManager;
            _storeMappingService    = storeMappingService;
            _widgetZoneService      = widgetZoneService;
            _widgetZoneSlideService = widgetZoneSlideService;

            _storeContext = storeContext;
            _workContext  = workContext;
        }
Beispiel #7
0
 public ProductTagController(IProductService productService, ISlideService slideService,
                             IAdvertistmentService advertistmentService, IConfiguration config)
 {
     _productService       = productService;
     _slideService         = slideService;
     _advertistmentService = advertistmentService;
     _config = config;
 }
Beispiel #8
0
        public SlidePage()
        {
            this.InitializeComponent();

            _slideService = NinjectContainer.Resolve <ISlideService>();

            SlidesList = _slideService.Read();
        }
        public PresentationController(IOptions <AppSettings> options, IPresentationService presentationService,
                                      ISlideService slideService) : base(options)
        {
            DependencyHelper.ThrowIfNull(presentationService, slideService);

            _presentationService = presentationService;
            _slideService        = slideService;
        }
 public WebSocketHandler(ISlideService slideService)
 {
     _slideService = slideService;
     if (_websockets == null)
     {
         _websockets = new List <WebSocket>();
     }
 }
 public ProductController(IProductService productService, ISlideService slideService, IAdvertistmentService advertistmentService,
                          IConfiguration config, IProductCategoryService productCategoryService)
 {
     _productService       = productService;
     _slideService         = slideService;
     _advertistmentService = advertistmentService;
     _config = config;
     _productCategoryService = productCategoryService;
 }
Beispiel #12
0
 public HomeController(IProductCategoryService productCategoryService,
                       IMenuService menuService
                       , ISlideService slideService,
                       IProductService productService)
 {
     _productService         = productService;
     _slideService           = slideService;
     _menuService            = menuService;
     _productCategoryService = productCategoryService;
 }
Beispiel #13
0
 public HomeController(IProductService productService, ISlideService slideService, IAdvertistmentService advertistmentService,
                       IBlogService blogService, IConfiguration config, ISubcribleService subcribleService, ISystemConfigService systemConfig)
 {
     _productService       = productService;
     _slideService         = slideService;
     _advertistmentService = advertistmentService;
     _blogService          = blogService;
     _config           = config;
     _subcribleService = subcribleService;
     _systemConfig     = systemConfig;
 }
 public HomeController(IProductService productService, IMapper mapper,
                       IProducerService producerService,
                       ISupplierService supplierService,
                       IProductCategoryService productCategoryService,
                       ISlideService slideService)
 {
     _productService         = productService;
     _producerService        = producerService;
     _supplierService        = supplierService;
     _slideService           = slideService;
     _productCategoryService = productCategoryService;
     _mapper = mapper;
 }
Beispiel #15
0
 public DisplayService(ISlideService slideService,
                       IMenuService menuService,
                       IDesignSettingsService designSettingsService,
                       IDisplaySettingsService displaySettingsService,
                       ITimeStampRepository timeStampRepository, IGlobalSettingsRepository globalSettingsRepository)
 {
     this._slideService        = slideService;
     this._menuService         = menuService;
     _designSettingsService    = designSettingsService;
     _displaySettingsService   = displaySettingsService;
     _timeStampRepository      = timeStampRepository;
     _globalSettingsRepository = globalSettingsRepository;
 }
 public HomeController(IProductCategoryService productCatgoryService, IPostCategoryService postCategoryService,
                       IProductService productService, IPostService postService, ISlideService slideService, ITagService tagService, ISupportOnlineService supportOnline,
                       IFooterService footerService, ISystemConfigService systemConfigService)
 {
     this._productCategoryService = productCatgoryService;
     this._postCategoryService    = postCategoryService;
     this._postService            = postService;
     this._productService         = productService;
     this._slideService           = slideService;
     this._tagService             = tagService;
     this._supportOnline          = supportOnline;
     this._footerService          = footerService;
     this._systemConfigService    = systemConfigService;
 }
Beispiel #17
0
 public WidgetZoneSlideModelFactory(ILanguageService languageService,
                                    ILocalizationService localizationService,
                                    ILocalizedEntityService localizedEntityService,
                                    IPictureService pictureService,
                                    ISlideService slideService,
                                    IWidgetZoneSlideService widgetZoneSlideService)
 {
     _languageService        = languageService;
     _localizationService    = localizationService;
     _localizedEntityService = localizedEntityService;
     _pictureService         = pictureService;
     _slideService           = slideService;
     _widgetZoneSlideService = widgetZoneSlideService;
 }
Beispiel #18
0
 public HomeController(IProductService productService, IBlogService blogService,
                       IProductCategoryService productCategoryService, ISlideService slideService,
                       IFeedbackService feedbackService, ISizeService sizeService, IMemoryCache cache,
                       IAdvertisementService advertisementService)
 {
     this._productService         = productService;
     this._blogService            = blogService;
     this._productCategoryService = productCategoryService;
     this._advertisementService   = advertisementService;
     this._slideService           = slideService;
     this._feedbackService        = feedbackService;
     this._sizeService            = sizeService;
     this._cache = cache;
 }
Beispiel #19
0
        public MainPage()
        {
            this.InitializeComponent();
            this._settingsService = App.Container.Resolve <ISettingsService>();
            this._slideService    = App.Container.Resolve <ISlideService>();

            LoadSettings();

            SetUpTimers();

            LoadSlideData();

            _pollTimer.Start();
            _slideTimer.Start();
        }
Beispiel #20
0
        public StartController()
        {
            _memberService          = new MemberService();
            _slideService           = new SlideService();
            _exchangeService        = new ExchangeService();
            _imgService             = new ImgService();
            _cooperationService     = new CooperationService();
            _lotteryService         = new LotteryService();
            _exchangeExamineService = new ExchangeExamineService();

            UserManager = new UserManager <ApplicationUser>(new UserStore <ApplicationUser>(new ApplicationDbContext()));
            UserManager.UserValidator = new UserValidator <ApplicationUser>(UserManager)
            {
                AllowOnlyAlphanumericUserNames = false
            };
        }
Beispiel #21
0
        public qBoSliderPlugin(IPermissionService permissionService,
                               IPictureService pictureService,
                               ISettingService settingService,
                               ISlideService slideService,
                               IWebHelper webHelper,
                               IStoreContext storeContext)
        {
            this._permissionService = permissionService;
            this._pictureService    = pictureService;
            this._settingService    = settingService;
            this._slideService      = slideService;

            this._webHelper = webHelper;

            this._storeContext = storeContext;
        }
Beispiel #22
0
 public SlideModelFactory(IAclService aclService,
                          ICustomerService customerService,
                          ILocalizationService localizationService,
                          ILocalizedModelFactory localizedModelFactory,
                          IPictureService pictureService,
                          ISlideService slideService,
                          IStoreMappingService storeMappingService,
                          IStoreService storeService)
 {
     this._aclService            = aclService;
     this._customerService       = customerService;
     this._localizationService   = localizationService;
     this._localizedModelFactory = localizedModelFactory;
     this._pictureService        = pictureService;
     this._slideService          = slideService;
     this._storeMappingService   = storeMappingService;
     this._storeService          = storeService;
 }
Beispiel #23
0
        public qBoSlideController(IAclService aclService,
                                  ICustomerService customerService,
                                  IGarbageManager garbageManager,
                                  ILocalizationService localizationService,
                                  ILocalizedEntityService localizedEntityService,
                                  INotificationService notificationService,
                                  IPermissionService permissionService,
                                  IPictureService pictureService,
                                  ISettingService settingService,
                                  ISlideModelFactory slideModelFactory,
                                  ISlideWidgetZoneModelFactory slideWidgetZoneModelFactory,
                                  ISlideService slideService,
                                  IStoreService storeService,
                                  IStoreMappingService storeMappingService,
                                  IWidgetZoneSlideService widgetZoneSlideService,
                                  IStoreContext storeContext,
                                  IWorkContext workContext)
        {
            ForseDefaultCulture();

            this._aclService                  = aclService;
            this._customerService             = customerService;
            this._garbageManager              = garbageManager;
            this._localizationService         = localizationService;
            this._localizedEntityService      = localizedEntityService;
            this._notificationService         = notificationService;
            this._permissionService           = permissionService;
            this._pictureService              = pictureService;
            this._settingService              = settingService;
            this._slideModelFactory           = slideModelFactory;
            this._slideWidgetZoneModelFactory = slideWidgetZoneModelFactory;
            this._slideService                = slideService;
            this._storeService                = storeService;
            this._storeMappingService         = storeMappingService;
            this._widgetZoneSlideService      = widgetZoneSlideService;

            this._storeContext = storeContext;
            this._workContext  = workContext;
        }
        public PublicInfoComponent(IAclService aclService,
                                   ICacheKeyService cacheKeyService,
                                   ICustomerService customerService,
                                   ILocalizationService localizationService,
                                   IPictureService pictureService,
                                   ISettingService settingService,
                                   ISlideService slideService,
                                   IStaticCacheManager staticCacheManager,
                                   IStoreContext storeContext,
                                   IWorkContext workContext)
        {
            this._aclService          = aclService;
            this._cacheKeyService     = cacheKeyService;
            this._customerService     = customerService;
            this._localizationService = localizationService;
            this._pictureService      = pictureService;
            this._settingService      = settingService;
            this._slideService        = slideService;
            this._staticCacheManager  = staticCacheManager;

            this._storeContext = storeContext;
            this._workContext  = workContext;
        }
 public SlideController(ISlideService slideService, IAuthorizationService authorizationService)
 {
     _slideService         = slideService;
     _authorizationService = authorizationService;
 }
Beispiel #26
0
 public SlideController(ISlideService slideService, IHostingEnvironment hostingEnvironment)
 {
     _slideService       = slideService;
     _hostingEnvironment = hostingEnvironment;
 }
Beispiel #27
0
 public SlidesController(ISlideService slideService)
 {
     _slideService = slideService;
 }
Beispiel #28
0
 public SlideController(IErrorService errorService, ISlideService slideService) : base(errorService)
 {
     this._slideService = slideService;
 }
 public SlideManagementController(ISlideService slideService)
 {
     this._slideService = slideService;
 }
Beispiel #30
0
 public HomeController(IProductCategoryService productCategoryService, ISlideService slideService, IAboutService aboutService)
 {
     _productCategoryService = productCategoryService;
     _slideService           = slideService;
     _aboutService           = aboutService;
 }
Beispiel #31
0
 public SlideController(ISlideService slideService, ISliderService sliderService)
 {
     this.slideService  = slideService;
     this.sliderService = sliderService;
 }
 public SlideController(ISlideService slideService, IMapper mapper, IHostingEnvironment env)
 {
     _slideService = slideService;
     _env          = env;
     _mapper       = mapper;
 }