public IActionResult GetTripById(int id)
        {
            var trip = _service.GetTripById(id);

            return(Ok(trip));
        }