1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
using System;
using System.Collections.Generic;
using System.Text;
namespace GestionDesComptes
{
class Compte
{
private string _nom;
private double _credit;
private int _IntNumCompte;
public Compte(string unNom, double unCredit, int unNum) //constructeur
{
_nom = unNom;
_credit = unCredit;
_IntNumCompte = unNum;
}
public string getNom()
{
return _nom;
}
public double getCredit()
{
return _credit;
}
public int getNumeroCompte()
{
return _IntNumCompte;
}
public virtual void Afficher()
{
Console.WriteLine("Propriétaire : " + this.getNom());
Console.WriteLine("Crédit : " + this.getCredit());
Console.ReadLine();
}
public virtual void Deposer(double DblUneSomme)// virtual pour la classe pere
{
if (Positif(DblUneSomme))
{
_credit += DblUneSomme;
}
}
public virtual void Retirer(double DblUneSomme)
{
if (CompareCredit(DblUneSomme))
{
_credit -= DblUneSomme;
}
}
private bool Positif(double DblUneSomme)
{
return (DblUneSomme > 0);
}
private bool CompareCredit(double DblUneSomme)
{
return (DblUneSomme <= _credit);
}
}
} |