public async Task <TripDto> GetTrip(int tripId) { var trip = await tripsService.GetTrip(tripId); return(mapper.Map <TripDto>(trip)); }