diff --git a/psychorientation/psychorientation/Form1.cs b/psychorientation/psychorientation/Form1.cs index baf4f85c4c2c2695ec38bb3efdcda6588afc5536..7d4e0967dacda6fa864cf8a30f2a9b94fa5e7aac 100644 --- a/psychorientation/psychorientation/Form1.cs +++ b/psychorientation/psychorientation/Form1.cs @@ -13,7 +13,7 @@ namespace psychorientation public partial class Form1 : Form { List<string> listClasse = new List<string>(); - List<Eleve> listEleve = new List<Eleve>(); + GestionnaireEleve gestEleve = new GestionnaireEleve(); int nombreEleve = 5; @@ -35,7 +35,7 @@ namespace psychorientation for(int i = 0; i < nbEleve; i++) { Eleve elev = new Eleve(i); - listEleve.Add(elev); + gestEleve.ajouterEleve(elev); } } @@ -51,7 +51,7 @@ namespace psychorientation InterfaceInfoEleve ii = new InterfaceInfoEleve(); - ii.setParam(listEleve[0],listClasse); + ii.setParam(gestEleve.getEleve(0),listClasse); ii.Left = 0; ii.Top = 0; ii.BorderStyle = BorderStyle.Fixed3D; diff --git a/psychorientation/psychorientation/GestionnaireEleve.cs b/psychorientation/psychorientation/GestionnaireEleve.cs new file mode 100644 index 0000000000000000000000000000000000000000..d4aa6b2131d525fecac83b35a07cfe1a8ae2f843 --- /dev/null +++ b/psychorientation/psychorientation/GestionnaireEleve.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace psychorientation +{ + public class GestionnaireEleve + { + private List<Eleve> listEleve = new List<Eleve>(); + + public GestionnaireEleve() + { + } + + public void ajouterEleve(Eleve e) + { + this.listEleve.Add(e); + } + + public void supprimerEleve(Eleve e) + { + this.listEleve.Remove(e); + } + + public void supprimerEleve(int indice) + { + this.listEleve.RemoveAt(indice); + } + + public List<Eleve> getListEleve() + { + return this.listEleve; + } + + public Eleve getEleve(int indice) + { + return this.listEleve[indice]; + } + + } +} diff --git a/psychorientation/psychorientation/Note.cs b/psychorientation/psychorientation/Note.cs new file mode 100644 index 0000000000000000000000000000000000000000..f8363bb657d2d0a50f2abecc398d00d23a80cc6c --- /dev/null +++ b/psychorientation/psychorientation/Note.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace psychorientation +{ + public class Note + { + private string nom; + private double note; + private double competence; + private double effort; + + public Note(string nom, double note, double competence, double effort) + { + this.nom = nom; + this.note = note; + this.competence = competence; + this.effort = effort; + } + + public string getNom() + { + return this.nom; + } + + public double getNote() + { + return this.note; + } + + public double getCompetence() + { + return this.competence; + } + + public double getEffort() + { + return this.effort; + } + } +} diff --git a/psychorientation/psychorientation/eleve.cs b/psychorientation/psychorientation/eleve.cs index 0a027cb0c68c77c422753669db65d5c76088bc8d..48bea3e130e648f353bf2ab0919d295967c6a179 100644 --- a/psychorientation/psychorientation/eleve.cs +++ b/psychorientation/psychorientation/eleve.cs @@ -13,6 +13,7 @@ namespace psychorientation private double effort = 0; private int orientation = 0; private int id; + private List<Note> listNote = new List<Note>(); public Eleve(int id) @@ -53,10 +54,16 @@ namespace psychorientation this.competence = competence; } + + public double getCompetence() { return this.competence; } + public List<Note> getListNote() + { + return this.listNote; + } public int getId() { return this.id; @@ -73,5 +80,15 @@ namespace psychorientation { return this.effort; } + + + + + + public void ajouterNote(string nom, double note) + { + Note n = new Note(nom, note, this.competence, this.effort); + this.listNote.Add(n); + } } } diff --git a/psychorientation/psychorientation/psychorientation.csproj b/psychorientation/psychorientation/psychorientation.csproj index 842cf6fdbc11df5aacef763bcbb27356c21e6105..b59ad5cd9b54821687dea3c897cfbdace609c1eb 100644 --- a/psychorientation/psychorientation/psychorientation.csproj +++ b/psychorientation/psychorientation/psychorientation.csproj @@ -57,6 +57,7 @@ <Compile Include="Form1.Designer.cs"> <DependentUpon>Form1.cs</DependentUpon> </Compile> + <Compile Include="GestionnaireEleve.cs" /> <Compile Include="InterfaceInfoEleve.cs"> <SubType>UserControl</SubType> </Compile> @@ -69,6 +70,7 @@ <Compile Include="Message.Designer.cs"> <DependentUpon>Message.cs</DependentUpon> </Compile> + <Compile Include="Note.cs" /> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <EmbeddedResource Include="Form1.resx">