Ejemplo n.º 1
0
 public ActionResult Post([FromBody] FlightPlan p)
 {
     try
     {
         sql.AddPlan(p);
         return(Created("new flight plan added to the data base", p));
     }
     catch
     {
         //Internal Server Error
         return(StatusCode(500));
     }
 }