public HomeController(IQuotesService quotesService, IAuthorsService authorsService,
                       IModesService modesService)
 {
     this.quotesService  = quotesService;
     this.authorsService = authorsService;
     this.modesService   = modesService;
 }
예제 #2
0
 public ModesController(IModesService modesService)
 {
     this.modesService = modesService;
 }
 public SettingsController(IModesService modesService)
 {
     this.modesService = modesService;
 }