示例#1
0
        public SeoSettingController(ISettingSeoGlobalService settingSeoGlobal, ICacheManager cacheManager)
        {
            _settingSeoGlobal = settingSeoGlobal;

            //Clear cache
            cacheManager.RemoveByPattern(CacheSettingseoglobalKey);
        }
示例#2
0
        public SeoSettingController(ISettingSeoGlobalService settingSeoGlobal, ICacheManager cacheManager)
        {
            _settingSeoGlobal = settingSeoGlobal;
            _cacheManager     = cacheManager;

            //Clear cache
            _cacheManager.Clear();
        }
示例#3
0
 public SummaryController(IMenuLinkService menuLinkService
                          , IProvinceService provinceService, IDistrictService districtService, ISystemSettingService systemSettingService
                          , IContactInfoService contactInfoService
                          , ISettingSeoGlobalService settingSeoGlobal
                          , IWorkContext workContext)
 {
     this._menuLinkService      = menuLinkService;
     this._provinceService      = provinceService;
     this._districtService      = districtService;
     this._systemSettingService = systemSettingService;
     this._contactInfoService   = contactInfoService;
     this._settingSeoGlobal     = settingSeoGlobal;
     this._workContext          = workContext;
 }
 public SummaryController(IMenuLinkService menuLinkService
                          , IProvinceService provinceService, IDistrictService districtService, ISystemSettingService systemSettingService
                          , IContactInfoService contactInfoService
                          , ISettingSeoGlobalService settingSeoGlobal
                          , IWorkContext workContext
                          , ICacheManager cacheManager, IPostService postService, IStaticContentService staticContentService)
 {
     _menuLinkService      = menuLinkService;
     _provinceService      = provinceService;
     _districtService      = districtService;
     _systemSettingService = systemSettingService;
     _contactInfoService   = contactInfoService;
     _settingSeoGlobal     = settingSeoGlobal;
     _postService          = postService;
     _staticContentService = staticContentService;
 }
 public SeoSettingController(ISettingSeoGlobalService settingSeoGlobal)
 {
     this._settingSeoGlobal = settingSeoGlobal;
 }