public List <Professeurs_Json> get_all_prof() { Site_gestion_etudiantEntities context = new Site_gestion_etudiantEntities(); List <Professeurs> Ma_list_professeur = new List <Professeurs>(); List <Professeurs_Json> Ma_list_etudiant_Json = new List <Professeurs_Json>(); Ma_list_professeur = context.Professeurs.ToList(); foreach (Professeurs prof in Ma_list_professeur) { Professeurs_Json Mon_prof_Json_courant = new Professeurs_Json(); Mon_prof_Json_courant.Last_name = prof.Last_name; Mon_prof_Json_courant.First_name = prof.First_name; Mon_prof_Json_courant.id = prof.id; Ma_list_etudiant_Json.Add(Mon_prof_Json_courant); } return(Ma_list_etudiant_Json); }
public Cours_prof_Json() { Cours = new Cours_Json(); Prof = new Professeurs_Json(); }