public static int webdeletePerson(int id) { person cl = new person(); return(cl.deletePerson(id)); }
public static int websavePerson(personList list) { person cl = new person(); return(cl.savePerson(list)); }
public static List <personList> webgetPerson(int id) { person cl = new person(); return(cl.getPerson(id)); }