public OlapReportsRow AddOlapReportsRow(string User, int Id, string Description, string Name, int ObjectsTotal, int ObjectsInvalid, int ObjectsInvalidNew, int InvalidDiff, string ReportXml) { OlapReportsRow rowOlapReportsRow = ((OlapReportsRow)(this.NewRow())); rowOlapReportsRow.ItemArray = new object[] { User, Id, Description, Name, ObjectsTotal, ObjectsInvalid, ObjectsInvalidNew, InvalidDiff, ReportXml }; this.Rows.Add(rowOlapReportsRow); return(rowOlapReportsRow); }
public OlapReportsRowChangeEvent(OlapReportsRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveOlapReportsRow(OlapReportsRow row) { this.Rows.Remove(row); }
public void AddOlapReportsRow(OlapReportsRow row) { this.Rows.Add(row); }