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;
            }
        }