Exemple #1
0
 public ActionResult Save([FromBody] Vehicle _vehicle)
 {
     try
     {
         return(Json(VehicleBLL.Save(_vehicle)));
     }
     catch (Exception appException)
     {
         throw appException;
     }
 }