public ContentTemplatesService(IContentTemplatesEntityService service, ILoginUserService userService, IFileContentService fileService) { _service = service; _userService = userService; _fileService = fileService; }
public ContentCacheController(IConfiguration configuration, IContentTemplatesEntityService templatesService, IContentsEntityService contentsService, IFileContentService filesService) { _templatesService = templatesService; _contentsService = contentsService; _filesService = filesService; _resourcesGroup = configuration.GetValue <string>("File:Resources"); }
public RssController(IConfiguration configuration, IFileContentService fileService, IDistributedCache cache, IContentsEntityService contentsService) { _cachesGroup = configuration.GetValue <string>("File:Caches"); _fileService = fileService; _cache = cache; _contentsService = contentsService; }
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; }
public FilesController(IFilesEntityService filesService, IFileContentService contentsService) { _filesService = filesService; _contentsService = contentsService; }
public ContentService(IContentsEntityService entitiesService, IFileContentService fileService) { _entitiesService = entitiesService; _fileService = fileService; }
public FileContentV1Controller(IFileContentService fileContentService) { this.fileContentService = fileContentService; }