Esempio n. 1
0
 public ForumServisi(
     IDepo <ForumGrubu> forumGrupDepo,
     IDepo <Forum> forumDepo,
     IDepo <ForumSayfası> forumSayfaDepo,
     IDepo <ForumGirdisi> forumGirdisiDepo,
     IDepo <ForumGirdisiOyu> forumGirdiOyuDepo,
     IDepo <ÖzelMesaj> forumÖzelMesajDepo,
     IDepo <ForumAboneliği> forumAboneliğiDepo,
     ForumAyarları _forumAyarları,
     IDepo <Kullanıcı> kullanıcıDepo,
     IÖnbellekYönetici önbellekYönetici,
     IGenelÖznitelikServisi genelÖznitelikServisi,
     IKullanıcıServisi kullanıcıServisi,
     IWorkContext workContext,
     IMesajServisi mesajServisi,
     IOlayYayınlayıcı olayYayınlayıcı)
 {
     this._forumGrupDepo         = forumGrupDepo;
     this._forumDepo             = forumDepo;
     this._forumSayfaDepo        = forumSayfaDepo;
     this._forumGirdisiDepo      = forumGirdisiDepo;
     this._forumÖzelMesajDepo    = forumÖzelMesajDepo;
     this._forumAboneliğiDepo    = forumAboneliğiDepo;
     this._forumAyarları         = _forumAyarları;
     this._kullanıcıDepo         = kullanıcıDepo;
     this._önbellekYönetici      = önbellekYönetici;
     this._genelÖznitelikServisi = genelÖznitelikServisi;
     this._kullanıcıServisi      = kullanıcıServisi;
     this._workContext           = workContext;
     this._mesajServisi          = mesajServisi;
     this._olayYayınlayıcı       = olayYayınlayıcı;
 }
Esempio n. 2
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;
        }