Exemplo n.º 1
0
 public JsonResult GetTruckById(string Id)
 {
     try
     {
         var Truck = _truckService.RetrieveTruckById(Id);
         return(Json(Truck, JsonRequestBehavior.AllowGet));
     }
     catch (Exception)
     {
         throw;
     }
 }