コード例 #1
0
        public BlogController(IBlogWebService blogWebService,
                              IBlogService blogService,
                              IWorkContext workContext,
                              IStoreContext storeContext,
                              ILocalizationService localizationService,
                              IWebHelper webHelper,
                              IStoreMappingService storeMappingService,
                              IPermissionService permissionService,
                              BlogSettings blogSettings,
                              CaptchaSettings captchaSettings
                              )
        {
            this._blogWebService      = blogWebService;
            this._blogService         = blogService;
            this._workContext         = workContext;
            this._storeContext        = storeContext;
            this._localizationService = localizationService;
            this._webHelper           = webHelper;
            this._storeMappingService = storeMappingService;
            this._permissionService   = permissionService;

            this._blogSettings    = blogSettings;
            this._captchaSettings = captchaSettings;
        }
コード例 #2
0
ファイル: HomePageBlog.cs プロジェクト: kbmanikanta/admincms
 public HomePageBlogViewComponent(IBlogWebService blogWebService,
                                  BlogSettings blogSettings)
 {
     this._blogWebService = blogWebService;
     this._blogSettings   = blogSettings;
 }
コード例 #3
0
 public BlogTagsViewComponent(IBlogWebService blogWebService, BlogSettings blogSettings)
 {
     this._blogWebService = blogWebService;
     this._blogSettings   = blogSettings;
 }