Exemplo n.º 1
0
        /// <summary>
        /// FindAll method.
        /// </summary>
        /// <returns></returns>
        public List <Country> All()
        {
            var countryDac = new CountryDAC();
            var result     = countryDac.Select();

            return(result);
        }
Exemplo n.º 2
0
        public List <Country> ALL()
        {
            var countryDAC = new CountryDAC();

            return(countryDAC.Select());
        }