Example #1
0
 public TemaContext(IWorkContext workContext,
                    ISiteContext siteContext,
                    IGenelÖznitelikServisi genelÖznitelikServisi,
                    SiteBilgiAyarları siteBilgiAyarları,
                    ITemaSağlayıcı temaSağlayıcı)
 {
     this._workContext           = workContext;
     this._siteContext           = siteContext;
     this._genelÖznitelikServisi = genelÖznitelikServisi;
     this._siteBilgiAyarları     = siteBilgiAyarları;
     this._temaSağlayıcı         = temaSağlayıcı;
 }
Example #2
0
 public TemaContext(IGenelÖznitelikServisi genericAttributeService,
                    ISiteContext storeContext,
                    ITemaSağlayıcı temaSağlayıcı,
                    IWorkContext workContext,
                    SiteBilgiAyarları storeInformationSettings)
 {
     this._genelÖznitelikServisi = genericAttributeService;
     this._siteContext           = storeContext;
     this._temaSağlayıcı         = temaSağlayıcı;
     this._workContext           = workContext;
     this._siteBilgiAyarları     = storeInformationSettings;
 }
Example #3
0
        public GenelModelFactory(IKategoriServisi categoryService,
                                 ISayfalarServisi topicService,
                                 ILanguageService languageService,
                                 ILocalizationService localizationService,
                                 IWorkContext workContext,
                                 ISiteContext storeContext,
                                 ITemaContext themeContext,
                                 ITemaSağlayıcı themeProvider,
                                 IForumServisi forumservice,
                                 IGenelÖznitelikServisi genericAttributeService,
                                 IWebYardımcısı webHelper,
                                 IİzinServisi permissionService,
                                 IStatikÖnbellekYönetici cacheManager,
                                 ISayfaHeadOluşturucu pageHeadBuilder,
                                 IResimServisi pictureService,
                                 IHostingEnvironment hostingEnvironment,

                                 KatalogAyarları catalogSettings,
                                 SiteBilgiAyarları storeInformationSettings,
                                 GenelAyarlar commonSettings,
                                 BlogAyarları blogSettings,
                                 ForumAyarları forumSettings,
                                 LocalizationSettings localizationSettings)
        {
            this._categoryService         = categoryService;
            this._topicService            = topicService;
            this._languageService         = languageService;
            this._localizationService     = localizationService;
            this._workContext             = workContext;
            this._storeContext            = storeContext;
            this._themeContext            = themeContext;
            this._themeProvider           = themeProvider;
            this._genericAttributeService = genericAttributeService;
            this._webHelper                = webHelper;
            this._permissionService        = permissionService;
            this._cacheManager             = cacheManager;
            this._pageHeadBuilder          = pageHeadBuilder;
            this._pictureService           = pictureService;
            this._hostingEnvironment       = hostingEnvironment;
            this._catalogSettings          = catalogSettings;
            this._storeInformationSettings = storeInformationSettings;
            this._commonSettings           = commonSettings;
            this._blogSettings             = blogSettings;
            this._forumSettings            = forumSettings;
            this._localizationSettings     = localizationSettings;
        }
Example #4
0
 public AyarlarController(IWorkContext workContext,
                          IİzinServisi izinServisi,
                          ISiteServisi siteServisi,
                          IAyarlarServisi ayarlarServisi,
                          ITemaSağlayıcı temaSağlayıcı,
                          GenelAyarlar genelAyarlar,
                          IKullanıcıİşlemServisi kulllanıcıİşlemServisi,
                          ITamMetinServisi tamMetinServisi,
                          ITarihYardımcısı tarihYardımcısı,
                          IResimServisi resimServisi)
 {
     this._workContext            = workContext;
     this._izinServisi            = izinServisi;
     this._siteServisi            = siteServisi;
     this._ayarlarServisi         = ayarlarServisi;
     this._temaSağlayıcı          = temaSağlayıcı;
     this._genelAyarlar           = genelAyarlar;
     this._kulllanıcıİşlemServisi = kulllanıcıİşlemServisi;
     this._tamMetinServisi        = tamMetinServisi;
     this._tarihYardımcısı        = tarihYardımcısı;
     this._resimServisi           = resimServisi;
 }