Beispiel #1
0
 public bool verser(Compt c, MAD somme)
 {
     if (this.debiter(somme) == true && c.crediter(somme) == true)
     {
         return(true);
     }
     return(false);
 }
Beispiel #2
0
 public virtual bool verser(Compt c, MAD somme)
 {
     if (this.debiter(somme) == true)
     {
         if (c.crediter(somme) == true)
         {
             return(true);
         }
     }
     return(false);
 }