private bool SettingsAreOK()
        {
            PassingRateBLL passingRateBLL = new PassingRateBLL();
            int            passingRate    = passingRateBLL.GetCurrentPassingRate();

            if (passingRate == 0)
            {
                //Console.WriteLine("PASSING RATE NOT SET");
                return(false);
            }

            ExamineeFailureBLL examineeFailureBLL = new ExamineeFailureBLL();
            int currentWaitDays = examineeFailureBLL.GetCurrentWaitDays();

            if (currentWaitDays == 0)
            {
                //Console.WriteLine("WAIT DAYS NOT SET");
                return(false);
            }

            ExamBLL examBLL      = new ExamBLL();
            bool    isIncomplete = false;

            isIncomplete = examBLL.HasIncompleteExam();

            if (isIncomplete)
            {
                //Console.WriteLine("INCOMPLETE ACTIVE EXAM");
                return(false);
            }

            return(true);
        }