Пример #1
0
 public LakesController(
     ICountriesService countriesService,
     ILakesService lakesService)
 {
     this.countriesService = countriesService;
     this.lakesService     = lakesService;
 }
Пример #2
0
 public HomeController(
     ILakesService lakesService,
     IRigsService rigsService,
     ITrophiesService trophiesService)
 {
     this.lakesService    = lakesService;
     this.rigsService     = rigsService;
     this.trophiesService = trophiesService;
 }