Esempio n. 1
0
 public Espece(decimal mtR, decimal totV)
 {
     Mr = new ModeReglement() {CodeModR=3};
        if (mtR < totV) Rendu = 0;
        else Rendu = mtR - totV;
        Montant = mtR;
 }
Esempio n. 2
0
 public Cheque(decimal mtR)
 {
     Montant = mtR;
        Mr = new ModeReglement() { CodeModR = 2 };
 }
Esempio n. 3
0
 public Cb(decimal mtR)
 {
     Mr = new ModeReglement() { CodeModR = 1 };
        Montant = mtR;
 }