예제 #1
0
 /// <summary>
 /// To get the data for listing
 /// </summary>
 /// <returns></returns>
 public ActionResult GetListJSON(string TypeID = "")
 {
     try
     {
         return(Json(_bussProj.GetList(TypeID), JsonRequestBehavior.AllowGet));   //	Get the listing (combo) data to call from client side
     }
     catch (Exception ex)
     {
         return(Content(ex.InnerException.Message));
     }
 }