예제 #1
0
        public Object get(string id, Course c)
        {
            CourseMapper map = new CourseMapper();

            return(map.get(id) as Course);
        }
예제 #2
0
        // Course
        public void put(Course c)
        {
            CourseMapper map = new CourseMapper();

            map.put(c);
        }