Esempio n. 1
0
 public JsonResult GetCompany()
 {
     try
     {
         DataTable dt = GNF.ExceuteStoredProcedure("SP_SelectCompany");
         return(Json(GNF.ConvertDataTabletoString(dt), JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(Json(ex.ToString(), JsonRequestBehavior.AllowGet));
     }
 }