public List <Especialidad> getAll() { try { return(especialidadData.GetAll()); } catch (Exception exc) { throw; } }
public List <Especialidad> GetAll() { try { return(especialidadData.GetAll()); } catch (Exception Ex) { throw Ex; } }
public List <Especialidad> GetAll() { try { return(EspecialidadData.GetAll()); } catch (Exception Ex) { Exception ExcepcionManejada = new Exception("Error al recuperar lista de especialidad", Ex); throw ExcepcionManejada; } }
public List <Especialidad> GetAll() { return(EspecialidadData.GetAll()); }
public DataTable DameEspecialidades() { return(EspecialidadData.GetAll()); }
public List <Especialidad> GetAll() { return(espDatos.GetAll()); }
public List <Especialidad> GetAll() { EspecialidadAdapter especialidad = new EspecialidadAdapter(); return(especialidad.GetAll()); }