CapDemo.Open_Game.ExistPM C# (CSharp) Метод

ExistPM() публичный Метод

public ExistPM ( ) : bool
Результат bool
        public bool ExistPM()
        {
            try
            {
                List<Phase> ListPhase;
                Phase.IDContest = iDContest;
                ListPhase = PhaseBL.GetPhasePM(Phase);
                IDPhasePM = ListPhase.ElementAt(0).IDPhase;
                return true;
            }
            catch (Exception)
            {
                return false;
            }
        }