Ejemplo n.º 1
0
            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);
 }
Ejemplo n.º 5
0
 public OlapReportsRowChangeEvent(OlapReportsRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 6
0
 public void RemoveOlapReportsRow(OlapReportsRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 7
0
 public void AddOlapReportsRow(OlapReportsRow row)
 {
     this.Rows.Add(row);
 }