public override bool IsSameRow(BufferColumnDto dto)
        {
            IFinallyScoreRateDto that = dto as IFinallyScoreRateDto;

            if (that == null)
            {
                return(false);
            }
            return(this.ChapterCode.Equals(that.ChapterCode));
        }
        public override DynamicData CopyKeyMembers(DynamicData data)
        {
            IFinallyScoreRateDto that = data as IFinallyScoreRateDto;

            if (that == null)
            {
                return(null);
            }
            that.ChapterCode = this.ChapterCode;
            return(data);
        }