Beispiel #1
0
 public JsonResult ListarGrupo()
 {
     try
     {
         var data = objGrupoService.ListarGrupo();
         return(Json(new { data = data }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }