예제 #1
0
        public static int webdeletePerson(int id)
        {
            person cl = new person();

            return(cl.deletePerson(id));
        }
예제 #2
0
        public static int websavePerson(personList list)
        {
            person cl = new person();

            return(cl.savePerson(list));
        }
예제 #3
0
        public static List <personList> webgetPerson(int id)
        {
            person cl = new person();

            return(cl.getPerson(id));
        }