Beispiel #1
0
        public dynamic GetQuarterFinalWinners()
        {
            if (_last8 == null)
            {
                string[] ls = new string[4];
                for (int i = 0; i < 4; i++)
                {
                    ls[i] = (i < Last8.Count()) ? Last8.ElementAt(i).Winner : "-";
                }
                _last8 = ls;
            }

            return(_last8);
        }
Beispiel #2
0
 public bool HasQuarterFinals()
 {
     return(Last8 != null && Last8.Count() > 0);
 }