private void updateCurGroup()
        {
            IExamLevel1GroupInfo groupData = this.levelData.getGroupByIndex(this.curGroupIndex);

            this.curGroup = new CExamLevel1GroupImpl(groupData);
            CViewsMgr.Inst.ExamView.updateGroupView(groupData);
        }
 public CExamLevel1GroupImpl(IExamLevel1GroupInfo groupData)
 {
     this.groupData = groupData;
 }
 public CExamLevel1GroupImpl(IExamLevel1GroupInfo groupData)
 {
     this.groupData = groupData;
 }
 private void genNew1GroupData()
 {
     this.newGroupData = new CExamLevel1GroupInfoImpl();
     this.newGroupData.Piles = new List<CPile>();
     this.retGoups.Add(this.newGroupData);
 }