Example #1
0
 public bool deleteStaff(string loginName)
 {
     try {
         DB.deleteStaff(loginName);
     }
     catch (Exception) {
         return(false);
     }
     return(true);
 }
Example #2
0
 public bool deleteStaff(string loginName)
 {
     if (level != Level.manager)
     {
         return(false);
     }
     try {
         DB.deleteStaff(loginName);
     }
     catch (Exception) {
         return(false);
     }
     return(true);
 }