public void AddClub(DataRow row)
        {
            ClubVO clubVo = new ClubVO(row);

            if(!ClubsBySchoolYear.ContainsKey(clubVo.SchoolYearSemester))
                ClubsBySchoolYear.Add(clubVo.SchoolYearSemester, new List<ClubVO>());
            
            ClubsBySchoolYear[clubVo.SchoolYearSemester].Add(clubVo);
        }
Beispiel #2
0
        public void AddClub(DataRow row)
        {
            ClubVO clubVo = new ClubVO(row);

            if (!ClubsBySchoolYear.ContainsKey(clubVo.SchoolYearSemester))
            {
                ClubsBySchoolYear.Add(clubVo.SchoolYearSemester, new List <ClubVO>());
            }

            ClubsBySchoolYear[clubVo.SchoolYearSemester].Add(clubVo);
        }