public GenererBulletinsSequentielBL() { CultureInfo ci = CultureInfo.CreateSpecificCulture(CultureInfo.CurrentCulture.Name); ci.DateTimeFormat.ShortDatePattern = "dd-MM-yyyy"; Thread.CurrentThread.CurrentCulture = ci; this.resultatTrimestrielDA = new ResultatTrimestrielDA(); this.moyennesTrimestrielsDA = new MoyennesTrimestrielsDA(); this.classeDA = new ClasseDA(); this.sequenceDA = new SequenceDA(); this.trimestreDA = new TrimestreDA(); this.evaluerDA = new EvaluerDA(); this.notesDA = new NotesDA(); this.programmerDA = new ProgrammerDA(); this.resultatDA = new ResultatDA(); this.mentionDA = new MentionDA(); this.parametresDA = new ParametresDA(); eleveDA = new EleveDA(); this.enseignantDA = new EnseignantDA(); this.sanctionnerDA = new SanctionnerDA(); this.disciplineDA = new DisciplineDA(); this.journalDA = new JournalDA(); }
public GestionMoyennesTrimestrielleBL() { classeDA = new ClasseDA(); eleveDA = new EleveDA(); resultatDA = new ResultatTrimestrielDA(); parametreDA = new ParametresDA(); trimestreDA = new TrimestreDA(); journalDA = new JournalDA(); }
public GestionRecapitulatifTrimestrielBL() { classeDA = new ClasseDA(); eleveDA = new EleveDA(); moyennesDA = new MoyennesTrimestrielsDA(); trimestreDA = new TrimestreDA(); parametreDA = new ParametresDA(); enseignantDA = new EnseignantDA(); programmerDA = new ProgrammerDA(); journalDA = new JournalDA(); resultatDA = new ResultatTrimestrielDA(); }
public GenererResultatsTrimestrielsBL() { this.resultatTrimestrielDA = new ResultatTrimestrielDA(); this.moyennesTrimestrielsDA = new MoyennesTrimestrielsDA(); this.classeDA = new ClasseDA(); this.sequenceDA = new SequenceDA(); this.trimestreDA = new TrimestreDA(); this.evaluerDA = new EvaluerDA(); this.notesDA = new NotesDA(); this.programmerDA = new ProgrammerDA(); this.resultatDA = new ResultatDA(); this.mentionDA = new MentionDA(); this.parametresDA = new ParametresDA(); this.journalDA = new JournalDA(); }
public GestionJuryBL() { classeDA = new ClasseDA(); sequenceDA = new SequenceDA(); inscrireDA = new InscrireDA(); parametreDA = new ParametresDA(); eleveDA = new EleveDA(); trimestreDA = new TrimestreDA(); resultatAnnuelDA = new ResultatAnnuelDA(); resultatTrimestrielDA = new ResultatTrimestrielDA(); resultatDA = new ResultatDA(); journalDA = new JournalDA(); sequences = new List <string>(); sequences = this.listerValeurColonneSequence("codeseq"); }
public SaisieAppreciationResultatBL() { this.classeDA = new ClasseDA(); this.sequenceDA = new SequenceDA(); this.parametresDA = new ParametresDA(); this.eleveDA = new EleveDA(); this.trimestreDA = new TrimestreDA(); this.journalDA = new JournalDA(); this.moyennesDA = new MoyennesDA(); this.moyennesTrimestrielsDA = new MoyennesTrimestrielsDA(); this.moyennesAnnuellesDA = new MoyennesAnnuellesDA(); this.matiereDA = new MatiereDA(); this.resultatDA = new ResultatDA(); this.resultatTrimestrielDA = new ResultatTrimestrielDA(); this.resultatAnnuelDA = new ResultatAnnuelDA(); }
public CreerModifierInscriptionClasseBL() { this.inscrireDA = new InscrireDA(); this.eleveDA = new EleveDA(); this.appartenirDA = new AppartenirDA(); this.classeDA = new ClasseDA(); this.categorieEleveDA = new CategorieEleveDA(); this.parametreDA = new ParametresDA(); this.sequenceDA = new SequenceDA(); this.moyennesDA = new MoyennesDA(); this.trimestreDA = new TrimestreDA(); this.moyennesTrimestrielsDA = new MoyennesTrimestrielsDA(); this.resultatDA = new ResultatDA(); this.resultatTrimestrielDA = new ResultatTrimestrielDA(); this.resultatAnnuelDA = new ResultatAnnuelDA(); this.journalDA = new JournalDA(); }
public GenererprofilAcademiqueBL() { this.inscrireDA = new InscrireDA(); this.eleveDA = new EleveDA(); this.appartenirDA = new AppartenirDA(); this.classeDA = new ClasseDA(); this.categorieEleveDA = new CategorieEleveDA(); this.parametreDA = new ParametresDA(); this.sequenceDA = new SequenceDA(); this.moyennesDA = new MoyennesDA(); this.trimestreDA = new TrimestreDA(); this.moyennesTrimestrielsDA = new MoyennesTrimestrielsDA(); this.resultatDA = new ResultatDA(); this.resultatTrimestrielDA = new ResultatTrimestrielDA(); this.resultatAnnuelDA = new ResultatAnnuelDA(); this.journalDA = new JournalDA(); }
internal ResultatTrimestrielBE resultatTrimestrielEleve(string mat, int annee, string trimestre) { ResultatTrimestrielDA resultat = new ResultatTrimestrielDA(); return(resultat.resultatTrimestrielEleve(mat, annee, trimestre)); }