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