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; } = new List(); public Banque(string nom, string urlSite, string urlLogo) { Nom = nom; UrlSite = urlSite; UrlLogo = urlLogo; } public Banque(string nom, string urlSite, string urlLogo, List lescomptes) { Nom = nom; UrlSite = urlSite; UrlLogo = urlLogo; ListeDesComptes = lescomptes; } public void AjouterCompte(Compte compte) { ListeDesComptes.Add(compte); } public void SupprimerCompte(Compte compte) { ListeDesComptes.Remove(compte); } public bool ExisteCompte(string s) { foreach (Compte compte in ListeDesComptes) { if (compte.Nom.Equals(s)) return true; } return false; } public Compte ReturnCompte(string s) { foreach (Compte compte in ListeDesComptes) { if (compte.Nom.Equals(s)) return compte; } throw new KeyNotFoundException(); } } }