Пример #1
0
            public G2MgrResponseRow AddG2MgrResponseRow(string results, string errorText, int errorCode)
            {
                G2MgrResponseRow rowG2MgrResponseRow = ((G2MgrResponseRow)(this.NewRow()));

                rowG2MgrResponseRow.ItemArray = new object[] {
                    results,
                    errorText,
                    errorCode
                };
                this.Rows.Add(rowG2MgrResponseRow);
                return(rowG2MgrResponseRow);
            }
Пример #2
0
 public G2MgrResponseRowChangeEvent(G2MgrResponseRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #3
0
 public void RemoveG2MgrResponseRow(G2MgrResponseRow row)
 {
     this.Rows.Remove(row);
 }
Пример #4
0
 public void AddG2MgrResponseRow(G2MgrResponseRow row)
 {
     this.Rows.Add(row);
 }