Exemplo n.º 1
0
 public ResumeModel(IBlastCMSClient blastcms, IAppCache appCache, IConfiguration configuration)
 {
     _blastcms      = blastcms;
     _configuration = configuration;
     _appCache      = appCache;
     _key           = _configuration["BlastCMSContentKey"];
 }
Exemplo n.º 2
0
 public ArticleModel(IBlastCMSClient blastcms, IAppCache appCache, IConfiguration configuration, ISuggestionArticlesService suggestionService)
 {
     _appCache          = appCache;
     _suggestionService = suggestionService;
     _blastcms          = blastcms;
     _key = configuration["BlastCMSContentKey"];
 }
Exemplo n.º 3
0
 public SiteMapModel(IBlastCMSClient blastcms, IAppCache appCache, IConfiguration configuration, IGenerateSitemapService generateSitemapService)
 {
     _blastcms               = blastcms;
     _configuration          = configuration;
     _appCache               = appCache;
     _key                    = _configuration["BlastCMSContentKey"];
     _generateSitemapService = generateSitemapService;
 }
 public RedirectMiddleware(RequestDelegate nextDelegate,
                           IBlastCMSClient blastcms,
                           IAppCache cache,
                           IConfiguration configuration)
 {
     NextDelegate = nextDelegate;
     _blastcms    = blastcms;
     _cache       = cache;
     _key         = configuration["BlastCMSContentKey"];
 }
 public SuggestionArticlesService(IBlastCMSClient blastcms, IAppCache appCache, IConfiguration configuration)
 {
     _blastcms = blastcms;
     _appCache = appCache;
     _key      = configuration["BlastCMSContentKey"];
 }