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.
104 lines
2.8 KiB
104 lines
2.8 KiB
namespace Model
|
|
{
|
|
public class Compte
|
|
{
|
|
public string Identifiant { get; private set; }
|
|
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 id,string nom, double solde)
|
|
{
|
|
Identifiant = id;
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = new List<Operation>();
|
|
LesPla = new List<Planification>();
|
|
LesEch = new List<Echeance>();
|
|
}
|
|
public Compte(string id, string nom, double solde, List<Operation> lesOpe)
|
|
{
|
|
Identifiant = id;
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = lesOpe;
|
|
}
|
|
public Compte(string id, string nom, double solde, List<Operation> lesOpe, List<Planification> lesPla)
|
|
{
|
|
Identifiant = id;
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = lesOpe;
|
|
LesPla = lesPla;
|
|
}
|
|
public Compte(string id, string nom, double solde, List<Operation> lesOpe, List<Planification> lesPla, List<Echeance> lesEch)
|
|
{
|
|
Identifiant = id;
|
|
Nom = nom;
|
|
Solde = solde;
|
|
LesOpe = lesOpe;
|
|
LesPla = lesPla;
|
|
LesEch = lesEch;
|
|
}
|
|
public void modifierSolde(double s)
|
|
{
|
|
Solde = s;
|
|
}
|
|
|
|
public void ajouterOperation(Operation o)
|
|
{
|
|
if (o == null) throw new NullReferenceException();
|
|
LesOpe.Add(o);
|
|
}
|
|
|
|
public void cacherOperation(Operation o)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void supprimerOperation(Operation o)
|
|
{
|
|
LesOpe.Remove(o);
|
|
}
|
|
|
|
public void ajoutEcheance(Echeance e)
|
|
{
|
|
if (e == null) throw new NullReferenceException();
|
|
LesEch.Add(e);
|
|
}
|
|
|
|
public void supprimerEcheance(Echeance e)
|
|
{
|
|
LesEch.Remove(e);
|
|
}
|
|
|
|
public void ajoutPlannification(Planification p)
|
|
{
|
|
if (p == null) throw new NullReferenceException();
|
|
LesPla.Add(p);
|
|
}
|
|
|
|
public void supprimerPlannification(Planification p)
|
|
{
|
|
LesPla.Remove(p);
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
|
|
if (obj == null || GetType() != obj.GetType())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return base.Equals(obj);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
|
|
}
|
|
} |