Beispiel #1
0
 public static void DeleteDoctor(int pId)
 {
     if (LUser.FetchByID(pId) != null)
     {
         LUser.Delete(pId);
     }
 }
Beispiel #2
0
 public bool Delete(object UserId)
 {
     return(LUser.Delete(UserId) == 1);
 }