Ejemplo n.º 1
0
        public Livret1VM() : base()
        {
            Livret oReturn = null;

            oReturn          = new Livret1();
            oReturn.oDiplome = Diplome.getDiplomeParDefaut();
            TheItem          = oReturn;
        }
Ejemplo n.º 2
0
        public Livret1VM(Boolean pIsCandidatLocked) : base(pIsCandidatLocked)
        {
            Livret oReturn = null;

            oReturn = new Livret1();


            oReturn.oDiplome = Diplome.getDiplomeParDefaut();
            TheItem          = oReturn;
        }
Ejemplo n.º 3
0
        public Livret2VM(Diplome pDip) : base()
        {
            Livret oReturn = null;

            oReturn          = new Livret2();
            oReturn.oDiplome = pDip;
            TheItem          = oReturn;

            lstDCLivret = new ObservableCollection <DCLivretVM>();
        }
Ejemplo n.º 4
0
        public Livret2VM() : base()
        {
            Livret oReturn = null;

            oReturn          = new Livret2();
            oReturn.oDiplome = Diplome.getDiplomeParDefaut();
            TheItem          = oReturn;

            lstDCLivret      = new ObservableCollection <DCLivretVM>();
            _lstMembreJuryVM = new ObservableCollection <MembreJuryVM>();
        }
Ejemplo n.º 5
0
        public Livret2VM(Boolean pIsCandidatLocked) : base(pIsCandidatLocked)
        {
            Livret oReturn = null;

            oReturn          = new Livret2();
            oReturn.oDiplome = Diplome.getDiplomeParDefaut();
            TheItem          = oReturn;

            lstDCLivret      = new ObservableCollection <DCLivretVM>();
            _lstMembreJuryVM = new ObservableCollection <MembreJuryVM>();

            //foreach (DomaineCompetence item in TheLivret.oDiplome.lstDomainesCompetences)
            //{
            //    DCLivretVM oDCLivret = new DCLivretVM();
            //    oDCLivret.TheDCLivret.oDomaineCompetence = item;
            //    lstDCLivret.Add(oDCLivret);
            //}
        }
Ejemplo n.º 6
0
 public LivretVMBase(Livret pLivret) : base(pLivret)
 {
     lstPieceJointe = new ObservableCollection <PieceJointeLivretVM>();
     SetLstJuryVM();
 }