Exemple #1
0
 private DataTable TableMenu(int id_menu_padre)
 {
     try
     {
         EmpleadosCOM componente = new EmpleadosCOM();
         DataSet      ds         = componente.sp_menu(id_menu_padre, Convert.ToString(Session["usuario"]));
         return(ds.Tables[0]);
     }
     catch (Exception ex)
     {
         Toast.Error("Error al cargar el menu: " + ex.Message, this.Page);
         return(null);
     }
 }