public IActionResult AddTrip([FromBody] Trip trip)
 {
     if (trip != null)
     {
         _service.AddTrip(trip);
     }
     return(Ok());
 }