Example #1
0
 public bool addStaff(Person p)
 {
     try {
         DB.addStaff(p);
     }
     catch (Exception) {
         return(false);
     }
     return(true);
 }