Пример #1
0
 public List <Especialidad> getAll()
 {
     try {
         return(especialidadData.GetAll());
     }
     catch (Exception exc) {
         throw;
     }
 }
Пример #2
0
 public List <Especialidad> GetAll()
 {
     try
     {
         return(especialidadData.GetAll());
     }
     catch (Exception Ex)
     {
         throw Ex;
     }
 }
Пример #3
0
 public List <Especialidad> GetAll()
 {
     try
     {
         return(EspecialidadData.GetAll());
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de especialidad", Ex);
         throw ExcepcionManejada;
     }
 }
Пример #4
0
 public List <Especialidad> GetAll()
 {
     return(EspecialidadData.GetAll());
 }
Пример #5
0
 public DataTable DameEspecialidades()
 {
     return(EspecialidadData.GetAll());
 }
Пример #6
0
 public List <Especialidad> GetAll()
 {
     return(espDatos.GetAll());
 }
Пример #7
0
        public List <Especialidad> GetAll()
        {
            EspecialidadAdapter especialidad = new EspecialidadAdapter();

            return(especialidad.GetAll());
        }