예제 #1
0
 public ActionResult GetVehicletByBrand([FromRoute] string brand)
 {
     try
     {
         return(Json(VehicleBLL.FindByBrand(brand)));
     }
     catch (Exception appException)
     {
         throw appException;
     }
 }