public async Task <ActionResult <IEnumerable <BusStationReadDto> > > GetAllBusStationsAsync() { var busStations = await _busStationService.GetBusStationsAsync(); return(Ok(_mapper.Map <IEnumerable <BusStationReadDto> >(busStations))); }