public override bool IsSameRow(BufferColumnDto dto) { IInspectionStandardReportDto that = dto as IInspectionStandardReportDto; if (that == null) { return(false); } return(this.SubjectCodeSeqNO.Equals(that.SubjectCodeSeqNO)); }
public override bool IsSameRow(BufferColumnDto dto) { IFinallyScoreRateDto that = dto as IFinallyScoreRateDto; if (that == null) { return(false); } return(this.ChapterCode.Equals(that.ChapterCode)); }
public override bool IsSameRow(BufferColumnDto dto) { IShopScoreInfoDto that = dto as IShopScoreInfoDto; if (that == null) { return(false); } return(this.SubjectCode.Equals(that.SubjectCode)); }
public override bool IsSameRow(BufferColumnDto dto) { IScoreRateForLinkDto that = dto as IScoreRateForLinkDto; if (that == null) { return(false); } return(this.LinkCode.Equals(that.LinkCode)); }
public override bool IsSameRow(BufferColumnDto dto) { ISalesConsultantReportDto that = dto as ISalesConsultantReportDto; if (that == null) { return(false); } return(this.ProjectCode.Equals(that.ProjectCode) && this.ShopCode.Equals(that.ShopCode) && this.SeqNO.Equals(that.SeqNO) && this.SalesConsultant.Equals(that.SalesConsultant)); }
public abstract bool IsSameRow(BufferColumnDto dto);