public Banque(string fichier) { _nomFichier = fichier; // Save the file name to use in saving. using (StreamReader fichierLecture = new StreamReader(fichier)) { for (int i = 0; i < NbComptes; i++) { string ligne = fichierLecture.ReadLine(); _comptes[i] = new CompteBancaire(ligne); } } }
public void Retirer(string nom, double montant) { CompteBancaire compte = RechercherCompte(nom); compte.Retirer(montant); }
public void AfficherSolde(string nom) { CompteBancaire compte = RechercherCompte(nom); compte.AfficherSolde(); }