예제 #1
0
 public ParkingsController(
     ITownsService townsService,
     IParkingsService parkingsService,
     IParkingSlotsService parkingSlotsService)
 {
     this.parkingSlotsService = parkingSlotsService;
     this.parkingsService     = parkingsService;
     this.townsService        = townsService;
 }
예제 #2
0
 public TownsController(
     ITownsService townsService,
     ICountriesService countriesService,
     IParkingsService parkingsService,
     IParkingSlotsService parkingSlotsService)
 {
     this.townsService        = townsService;
     this.countriesService    = countriesService;
     this.parkingsService     = parkingsService;
     this.parkingSlotsService = parkingSlotsService;
 }