public DataTable llenar_Usuarios(string nombre, string apellido) { DataTable dt = new DataTable(); try { GestorBase BD = new GestorBase(); dt = BD.llenar_Usuarios(nombre, apellido); } catch (Exception ex) { throw new Exception(ex.Message, ex); } return(dt); }
public DataTable llenar_Usuarios(int cedula) { DataTable dt = new DataTable(); try { GestorBase BD = new GestorBase(); dt = BD.llenar_Usuarios(cedula); } catch (Exception ex) { throw new Exception(ex.Message, ex); } return(dt); }