Exemplo n.º 1
0
        public void ListCampGrounds_Test()
        {
            int parkSelection = 1;

            output = campGroundSql.ListCampground(parkSelection);
            Assert.IsNotNull(output);
        }
Exemplo n.º 2
0
        public Dictionary <int, CampGround> ParkCampgrounds(int parkSelection)
        {
            CampGroundSqlDAL             campGroundSql = new CampGroundSqlDAL();
            Dictionary <int, CampGround> campgrounds   = new Dictionary <int, CampGround>();

            campgrounds = campGroundSql.ListCampground(parkSelection);

            return(campgrounds);
        }