Exemplo 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;
 }
Exemplo n.º 2
0
 public Cheque(decimal mtR)
 {
     Montant = mtR;
        Mr = new ModeReglement() { CodeModR = 2 };
 }
Exemplo n.º 3
0
 public Cb(decimal mtR)
 {
     Mr = new ModeReglement() { CodeModR = 1 };
        Montant = mtR;
 }