예제 #1
0
파일: ApiData.cs 프로젝트: mono/momareports
 static void MergeRow(MomaDataSet.MembersRow row0, MomaDataSet.MembersRow other)
 {
     row0.IsFixed |= other.IsFixed;
     row0.IsTodo |= other.IsTodo;
     row0.IsMissing |= other.IsMissing;
     row0.IsNiex |= other.IsNiex;
     if (!other.IsTODOCommentNull ())
     row0.TODOComment = other.TODOComment;
 }