Exemplo n.º 1
0
 public Usuarios GetAll()
 {
     UsuarioAdapter UsuarioData = new UsuarioAdapter();
     try
     {
         return UsuarioData.GetAll();
     }
     finally
     {
         UsuarioData = null;
     }
 }
Exemplo n.º 2
0
 public List <Usuario> GetAll()
 {
     return(_UsuarioData.GetAll());
 }
Exemplo n.º 3
0
        public List <Usuario> GetAll()
        {
            List <Usuario> usuarios = UsuarioData.GetAll();

            return(usuarios);
        }