public IActionResult Post([FromBody] Trip trip) { var _trip = _service.BookTrip(trip); return(Created("api/v1/Trip", _trip)); }