public OrganizedTripsController(IOrganizedTripsService tripsService, IHotelsService hotelsService, IDestinationsService destinationsService) { this.tripsService = tripsService; this.hotelsService = hotelsService; this.destinationsService = destinationsService; }
public OrganizedTripsController(IDestinationsService destinationsService, IOrganizedTripsService organizedTripsService) { this.destinationsService = destinationsService; this.organizedTripsService = organizedTripsService; }