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");
 }