public Option CreerOption(string nom, Filiere filiere) { try { _bdd.Options.Add(new Option { Nom = nom, Filere = filiere }); _bdd.SaveChanges(); //filiere.Options.Add(_bdd.Options.ToList().Last()); //_bdd.SaveChanges(); return(_bdd.Options.ToList().Last()); } catch (Exception e) { Console.WriteLine(e); return(null); } }
public List <Option> ObtenirListeOptionesDUnFiliere(Filiere filiere) { return(filiere.Options); }