|
|
|
@ -100,6 +100,10 @@ namespace EPAServeur.Context |
|
|
|
|
|
|
|
|
|
ChoixTypeEntretien choix1, choix2, choix3, choix4, choix5, choix6, choix7; |
|
|
|
|
|
|
|
|
|
Objectif objectif1, objectif2, objectif3, objectif4, objectif5, objectif6, objectif7, objectif8, objectif9; |
|
|
|
|
|
|
|
|
|
ObjectifPrecedent objectifPrecedent1, objectifPrecedent2, objectifPrecedent3, objectifPrecedent4, objectifPrecedent5, objectifPrecedent6; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Ep en cours |
|
|
|
|
Ep epEnCours1, epEnCours2, epEnCours3, epEnCours4, epEnCours5, epEnCours6, epEnCours7, epEnCours8, epEnCours9; |
|
|
|
@ -237,6 +241,16 @@ namespace EPAServeur.Context |
|
|
|
|
}; |
|
|
|
|
epEnCours3.Participants = new List<ParticipationEP>(new[] { p1, p2 }); |
|
|
|
|
|
|
|
|
|
objectif1 = new Objectif() { Ep = epEnCours3, Libelle = "Objectif1" }; |
|
|
|
|
objectif2 = new Objectif() { Ep = epEnCours3, Libelle = "Objectif2" }; |
|
|
|
|
objectif3 = new Objectif() { Ep = epEnCours3, Libelle = "Objectif3" }; |
|
|
|
|
|
|
|
|
|
objectifPrecedent1 = new ObjectifPrecedent() { Ep = epEnCours3, Libelle = "ObjectifPrec1", Commentaire = "Commentaire", StatutObjectif = StatutObjectif.Atteint }; |
|
|
|
|
objectifPrecedent2 = new ObjectifPrecedent() { Ep = epEnCours3, Libelle = "ObjectifPrec2", Commentaire = "Commentaire", StatutObjectif = StatutObjectif.Partiel }; |
|
|
|
|
objectifPrecedent3 = new ObjectifPrecedent() { Ep = epEnCours3, Libelle = "ObjectifPrec3", Commentaire = "Commentaire", StatutObjectif = StatutObjectif.Partiel }; |
|
|
|
|
epEnCours3.Objectifs = new List<Objectif>() { objectif1, objectif2, objectif3 }; |
|
|
|
|
epEnCours3.ObjectifsPrecedents = new List<ObjectifPrecedent>() { objectifPrecedent1, objectifPrecedent2, objectifPrecedent3 }; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -394,6 +408,11 @@ namespace EPAServeur.Context |
|
|
|
|
IdCollaborateur = new Guid("4f3fcd23-a1e4-4c9e-afa2-d06ca9216491"), |
|
|
|
|
Obligatoire = false, |
|
|
|
|
}; |
|
|
|
|
objectif4 = new Objectif() { Ep = epEnCours7, Libelle = "Objectif4" }; |
|
|
|
|
objectif5 = new Objectif() { Ep = epEnCours7, Libelle = "Objectif5" }; |
|
|
|
|
objectif6 = new Objectif() { Ep = epEnCours7, Libelle = "Objectif6" }; |
|
|
|
|
|
|
|
|
|
epEnCours7.Objectifs = new List<Objectif>() { objectif4, objectif5, objectif6 }; |
|
|
|
|
epContext.Ep.Add(epEnCours7); |
|
|
|
|
|
|
|
|
|
epEnCours8 = new Ep() |
|
|
|
@ -462,6 +481,17 @@ namespace EPAServeur.Context |
|
|
|
|
}; |
|
|
|
|
epSigne1.Engagements = new List<Engagement>(); |
|
|
|
|
epSigne1.Engagements.Add(eg4); |
|
|
|
|
|
|
|
|
|
objectif7 = new Objectif() { Ep = epSigne1, Libelle = "Objectif7" }; |
|
|
|
|
objectif8 = new Objectif() { Ep = epSigne1, Libelle = "Objectif8" }; |
|
|
|
|
objectif9 = new Objectif() { Ep = epSigne1, Libelle = "Objectif9" }; |
|
|
|
|
|
|
|
|
|
objectifPrecedent4 = new ObjectifPrecedent() { Ep = epSigne1, Libelle = "ObjectifPrec4", Commentaire = "Commentaire", StatutObjectif = StatutObjectif.NonAtteint }; |
|
|
|
|
objectifPrecedent5 = new ObjectifPrecedent() { Ep = epSigne1, Libelle = "ObjectifPrec5", Commentaire = "Commentaire", StatutObjectif = StatutObjectif.NonAtteint }; |
|
|
|
|
objectifPrecedent6 = new ObjectifPrecedent() { Ep = epSigne1, Libelle = "ObjectifPrec6", Commentaire = "Commentaire", StatutObjectif = StatutObjectif.Atteint }; |
|
|
|
|
epSigne1.Objectifs = new List<Objectif>() { objectif7, objectif8, objectif9 }; |
|
|
|
|
epSigne1.ObjectifsPrecedents = new List<ObjectifPrecedent>() { objectifPrecedent4, objectifPrecedent6, objectifPrecedent5 }; |
|
|
|
|
|
|
|
|
|
epContext.Ep.Add(epSigne1); |
|
|
|
|
|
|
|
|
|
epSigne2 = new Ep() |
|
|
|
|