public ContentTemplatesService(IContentTemplatesEntityService service, ILoginUserService userService,
                                IFileContentService fileService)
 {
     _service     = service;
     _userService = userService;
     _fileService = fileService;
 }
Example #2
0
 public ContentCacheController(IConfiguration configuration,
                               IContentTemplatesEntityService templatesService,
                               IContentsEntityService contentsService,
                               IFileContentService filesService)
 {
     _templatesService = templatesService;
     _contentsService  = contentsService;
     _filesService     = filesService;
     _resourcesGroup   = configuration.GetValue <string>("File:Resources");
 }
Example #3
0
 public RssController(IConfiguration configuration,
                      IFileContentService fileService,
                      IDistributedCache cache,
                      IContentsEntityService contentsService)
 {
     _cachesGroup     = configuration.GetValue <string>("File:Caches");
     _fileService     = fileService;
     _cache           = cache;
     _contentsService = contentsService;
 }
Example #4
0
 public FilesService(IConfiguration configuration,
                     IFilesEntityService service,
                     ITagsEntityService tagsService,
                     IFileContentService contentService,
                     ILoginUserService userService,
                     IKeyValuesEntityService keyValueService,
                     IFileQueryCompileService queryCompiler,
                     IDistributedCache cache)
 {
     _resourcesGroup  = configuration.GetValue <string>("File:Resources");
     _cachesGroup     = configuration.GetValue <string>("File:Caches");
     _service         = service;
     _tagsService     = tagsService;
     _contentService  = contentService;
     _queryCompiler   = queryCompiler;
     _userService     = userService;
     _keyValueService = keyValueService;
     _cache           = cache;
 }
Example #5
0
 public FilesController(IFilesEntityService filesService,
                        IFileContentService contentsService)
 {
     _filesService    = filesService;
     _contentsService = contentsService;
 }
Example #6
0
 public ContentService(IContentsEntityService entitiesService, IFileContentService fileService)
 {
     _entitiesService = entitiesService;
     _fileService     = fileService;
 }
Example #7
0
 public FileContentV1Controller(IFileContentService fileContentService)
 {
     this.fileContentService = fileContentService;
 }