Esempio n. 1
0
        public bool GetExamConfirmStatus(Dan_C dan_C)
        {
            switch (dan_C.GetExamRange())
            {
            case Exam.Range.Less:
            {
                if (GetExamStatus(dan_C) == Exam.Status.Better_Success && notesremain == 0)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }

            case Exam.Range.More:
            {
                if (GetExamStatus(dan_C) == Exam.Status.Better_Success)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            }
            return(false);
        }
Esempio n. 2
0
 public Dan_C(Dan_C dan_C) : this(dan_C.GetExamType(), new int[] { dan_C.GetValue(false), dan_C.GetValue(true) }, dan_C.GetExamRange())
 {
 }