Ejemplo n.º 1
0
 public ParkingsController(
     ITownsService townsService,
     IParkingsService parkingsService,
     IParkingSlotsService parkingSlotsService)
 {
     this.parkingSlotsService = parkingSlotsService;
     this.parkingsService     = parkingsService;
     this.townsService        = townsService;
 }
Ejemplo n.º 2
0
 public TownsController(
     ITownsService townsService,
     ICountriesService countriesService,
     IParkingsService parkingsService,
     IParkingSlotsService parkingSlotsService)
 {
     this.townsService        = townsService;
     this.countriesService    = countriesService;
     this.parkingsService     = parkingsService;
     this.parkingSlotsService = parkingSlotsService;
 }