Exemple #1
0
 public List <Modulo> GetAll()
 {
     try
     {
         return(ModuloData.GetAll());
     }
     catch (Exception Ex)
     {
         Exception ExcepcionManejada =
             new Exception("Error al recuperar lista de usuarios", Ex);
         throw ExcepcionManejada;
     }
 }
Exemple #2
0
 public List <Modulo> GetAll()
 {
     return(ModuloData.GetAll());
 }
Exemple #3
0
        public List <Modulo> GetAll()
        {
            ModuloAdapter modulo = new ModuloAdapter();

            return(modulo.GetAll());
        }