示例#1
0
 public ActionResult <Trip> Create([FromBody] Trip _trip)
 {
     try{
         return(Created("New trip created!", _tripService.Create(_trip)));
     }catch (Exception e) {
         return(BadRequest(e.ToString()));
     }
 }