CountryGetAll() 공개 메소드

public CountryGetAll ( ) : IEnumerable
리턴 IEnumerable
예제 #1
0
        // Attention 08 - Controller get all countries

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