public HomeController(IQuotesService quotesService, IAuthorsService authorsService, IModesService modesService) { this.quotesService = quotesService; this.authorsService = authorsService; this.modesService = modesService; }
public ModesController(IModesService modesService) { this.modesService = modesService; }
public SettingsController(IModesService modesService) { this.modesService = modesService; }