BusinessLogic.PaisLogic.Listar C# (CSharp) Method

Listar() public method

public Listar ( ) : List
return List
        public List<Pais> Listar()
        {
            using (var ctx = new DbContextScope())
            {
                return repoPais.GetAll()
                               .OrderBy(x => x.Nombre)
                               .ToList();
            }
        }
    }