Example #1
0
 public AjouterStageModelView(ClubModel club)
 {
     this.club           = club;
     stage               = new StageModel();
     Entraineurs         = PersonnelService.ListeEntraineur(club);
     AjouterStageCommand = new SimpleCommand(AjouterStage);
 }
Example #2
0
        public void Initialisation()
        {
            foreach (PersonnelModel e in PersonnelService.ListeEntraineur(club))
            {
                ListeDesEntraineurs.Add(e);
            }
            ListeDesCompetiteursSansEquipe = MembreService.ListeCompetiteurDisponible(club);

            AjouterCompetiteurSCommand   = new SimpleCommand(AjouterCompetiteurS);
            SupprimerCompetiteurSCommand = new SimpleCommand(SupprimerCompetiteurS);
            AjouterEquipeCommand         = new SimpleCommand(AjouterEquipe);
        }