public ApiController( IWebAppPublicationService webAppPublicationService, IUserService userService, ILogger logger, Settings settings) { _logger = logger; _settings = settings; _userService = userService; _webAppPublicationService = webAppPublicationService; }
public HomeController( IMemoryCache cache, IVacancyService vacancyService, IPublicationService publicationService, Settings settings, IWebAppPublicationService webAppPublicationService) { _cache = cache; _settings = settings; _vacancyService = vacancyService; _publicationService = publicationService; _webAppPublicationService = webAppPublicationService; }
public HomeController(IWebAppPublicationService service, Settings settings) { _settings = settings; _service = service; }