예제 #1
0
 public OrganizedTripsController(IOrganizedTripsService tripsService, IHotelsService hotelsService, IDestinationsService destinationsService)
 {
     this.tripsService        = tripsService;
     this.hotelsService       = hotelsService;
     this.destinationsService = destinationsService;
 }
예제 #2
0
 public OrganizedTripsController(IDestinationsService destinationsService, IOrganizedTripsService organizedTripsService)
 {
     this.destinationsService   = destinationsService;
     this.organizedTripsService = organizedTripsService;
 }