Exemplo n.º 1
0
 public LakesController(
     ICountriesService countriesService,
     ILakesService lakesService)
 {
     this.countriesService = countriesService;
     this.lakesService     = lakesService;
 }
Exemplo n.º 2
0
 public HomeController(
     ILakesService lakesService,
     IRigsService rigsService,
     ITrophiesService trophiesService)
 {
     this.lakesService    = lakesService;
     this.rigsService     = rigsService;
     this.trophiesService = trophiesService;
 }