Ejemplo n.º 1
0
        // GET: Home
        public ActionResult Index()
        {
            ParkSqlDAL       sql     = new ParkSqlDAL(connectionString);
            List <ParkModel> newList = sql.NationalParksList();

            return(View(newList));
        }