public void AddAbonneManager(AbonneEntity abonne) { if (!string.IsNullOrEmpty(abonne.Nom) && !string.IsNullOrEmpty(abonne.Prenom)) { new AbonneProvider().AddAbonneProvider(abonne); } }
public AbonneEntity GetInfoAbonne(string nom) { List <AbonneEntity> listAbonne = new List <AbonneEntity>(); AbonneEntity abonne = new AbonneEntity(); abonne.Prenom = "Remi"; abonne.Nom = "Gravelaine"; abonne.Id = "identifiant-0001"; listAbonne.Add(abonne); abonne = new AbonneEntity(); abonne.Prenom = "Jean"; abonne.Nom = "Grine"; abonne.Id = "identifiant-0002"; listAbonne.Add(abonne); //Appel à la base de données return(listAbonne.Find(e => e.Nom == nom) ?? new AbonneEntity()); }
public void AddAbonneProvider(AbonneEntity abonne) { listAbonne.Add(abonne); }
public void AddAbonne(AbonneEntity abonne) { new AbonneManager().AddAbonneManager(abonne); }