Beispiel #1
0
 public void Update_Nanny(Nanny n)
 {
     if (n.Age() < 18)
     {
         throw new Exception("nanny can't be younger than 18");
     }
     dal.Update_Nanny(n);
 }