You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
namespace Model
|
|
{
|
|
public class Compte
|
|
{
|
|
public string Nom { get; private set; }
|
|
public double Solde { get; private set; }
|
|
public List<Operation> LesOpe { get; private set; } = new List<Operation>();
|
|
public List<Planification> LesPla { get; private set; } = new List<Planification>();
|
|
public List<Echeance> LesEch { get; private set; } = new List<Echeance>();
|
|
public Compte(string nom, double solde)
|
|
{
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = new List<Operation>();
|
|
LesPla = new List<Planification>();
|
|
LesEch = new List<Echeance>();
|
|
}
|
|
public Compte(string nom, double solde, List<Operation> lesOpe)
|
|
{
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = lesOpe;
|
|
}
|
|
public Compte(string nom, double solde, List<Operation> lesOpe, List<Planification> lesPla)
|
|
{
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = lesOpe;
|
|
LesPla = lesPla;
|
|
}
|
|
public Compte(string nom, double solde, List<Operation> lesOpe, List<Planification> lesPla, List<Echeance> lesEch)
|
|
{
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = lesOpe;
|
|
LesPla = lesPla;
|
|
LesEch = lesEch;
|
|
}
|
|
public void modifierSolde(double s)
|
|
{
|
|
Solde = s;
|
|
}
|
|
|
|
|
|
}
|
|
} |