public async Task <IActionResult> PutTripAsync(Guid id, [FromBody] TripDTO tripDto) { await _tripService.EditTripAsync(id, tripDto); return(Ok()); }