public ActionResult EditVehicleException(string checkedExIDs, string vehicleID)
 {
     return(Json(VehicleExceptionBLL.EditVehicleException(checkedExIDs, vehicleID), JsonRequestBehavior.AllowGet));
 }
        public ActionResult GetVehicleExceptionInfo()
        {
            string id = Request.Params["vehicleID"];

            return(Json(VehicleExceptionBLL.GetVehicleExceptions(id), JsonRequestBehavior.AllowGet));
        }