Esempio n. 1
0
 public List <Persona> getAll()
 {
     try
     {
         return(personaData.GetAll());
     }
     catch (Exception exc)
     {
         throw;
     }
 }
Esempio n. 2
0
 public List <Persona> GetAll()
 {
     try
     {
         List <Persona> persona = personaAdapter.GetAll();
         return(persona);
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de personas", Ex);
         throw ExcepcionManejada;
     }
 }
Esempio n. 3
0
 public List <Persona> GetAll()
 {
     return(PersonaData.GetAll());
 }
Esempio n. 4
0
        public List <Persona> GetAll()
        {
            List <Persona> pers = data.GetAll();

            return(pers);
        }
Esempio n. 5
0
        public List <Persona> GetAll()
        {
            PersonaAdapter persona = new PersonaAdapter();

            return(persona.GetAll());
        }