CountryGetAll() public method

public CountryGetAll ( ) : IEnumerable
return IEnumerable
Ejemplo n.º 1
0
        // Attention 08 - Controller get all countries

        // GET: Countries
        public ActionResult Index()
        {
            return(View(m.CountryGetAll()));
        }