classe Banque créer
continuous-integration/drone/push Build is failing Details

Code
Nicolas MAYE 2 years ago
parent 5582da857b
commit 078a38a384

@ -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<Compte> 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);
}
}
}
}
Loading…
Cancel
Save