diff --git a/Code/Model/Banque.cs b/Code/Model/Banque.cs new file mode 100644 index 0000000..d3d4421 --- /dev/null +++ b/Code/Model/Banque.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Model +{ + public class Banque + { + public string Nom { get; private set; } + public string UrlSite { get; private set; } + public string UrlLogo { get; private set; } + public List ListeDesComptes { get; private set; } + + public Banque(string nom, string urlSite, string urlLogo) + { + Nom = nom; + UrlSite = urlSite; + UrlLogo = urlLogo; + } + + private AjouterCompte(Compte compte) + { + ListeDesComptes.Add(compte); + } + + private SupprimerCompte(Compte compte) + { + foreach Compte in ListeDesComptes + { + if (compte.nom == ListeDesComptes.Compte.nom) + ListeDesComptes.Compte.Remove(ListeDesComptes); + } + + } + } +}