public async Task <IActionResult> PostCustomerToTripAsync(Guid tripId, Guid customerId)
        {
            await _tripService.AddCustomerToTripAsync(tripId, customerId);

            return(Ok());
        }