Esempio n. 1
0
            public ListQueryRow AddListQueryRow(int QueryID, string QueryName, string Description, string WhereCondn, string WhereCondnSql, string CreatedOn, string CreatedBy)
            {
                ListQueryRow rowListQueryRow = ((ListQueryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    QueryID,
                    QueryName,
                    Description,
                    WhereCondn,
                    WhereCondnSql,
                    CreatedOn,
                    CreatedBy
                };
                rowListQueryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListQueryRow);
                return(rowListQueryRow);
            }
Esempio n. 2
0
 public ListQueryRowChangeEvent(ListQueryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveListQueryRow(ListQueryRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddListQueryRow(ListQueryRow row)
 {
     this.Rows.Add(row);
 }