示例#1
0
        public void AjouterPartSociale(CompteClient compteClient, StatutPartSociale statutPartSociale, double montant, Employe employe)
        {
            operationBLO = new OperationBLO();

            partSocialeBLO.Add(new PartSociale(compteClient, statutPartSociale, montant));

            operationBLO.AjouterOperation(TypeOperation.Ajout, employe, compteClient.Client, compteClient, montant, "toto tata");
        }
示例#2
0
 public PartSociale(CompteClient compteClient, StatutPartSociale statutPartSociale, double montant) : this(compteClient)
 {
     StatutPartSociale = statutPartSociale;
     Montant           = montant;
 }