public LocationsController(ILocationsService locationsService, ITownsService townsService,
                            ILocationTypesService locationTypesService)
 {
     this.locationsService     = locationsService;
     this.townsService         = townsService;
     this.locationTypesService = locationTypesService;
 }
Exemplo n.º 2
0
 public MapController(IPointsOfInterestService pointsOfInterestService, ILocationTypesService locationTypesService)
 {
     _pointsOfInterestService = pointsOfInterestService;
     _locationTypesService = locationTypesService;
 }