BusinessLogic.PaisLogic.Listar C# (CSharp) Метод

Listar() публичный Метод

public Listar ( ) : List
Результат List
        public List<Pais> Listar()
        {
            using (var ctx = new DbContextScope())
            {
                return repoPais.GetAll()
                               .OrderBy(x => x.Nombre)
                               .ToList();
            }
        }
    }