Exemplo n.º 1
0
 public override int GetHashCode()
 {
     return(CompteClient.GetHashCode());
 }
Exemplo n.º 2
0
 public PartSociale(CompteClient compteClient, StatutPartSociale statutPartSociale, double montant) : this(compteClient)
 {
     StatutPartSociale = statutPartSociale;
     Montant           = montant;
 }
Exemplo n.º 3
0
 public Beneficier(int id, string nom, string descriptionCondition, int pourcentage, CompteClient compteClient)
 {
     Id  = id;
     Nom = nom;
     DescriptionCondition = descriptionCondition;
     Pourcentage          = pourcentage;
     CompteClient         = compteClient;
 }
Exemplo n.º 4
0
 public PartSociale(CompteClient compteClient)
 {
     CompteClient = compteClient;
 }
Exemplo n.º 5
0
 public Beneficier(CompteClient compteClient)
 {
     CompteClient = compteClient;
 }