Beispiel #1
0
            public landRow AddlandRow(string idland, string description, string cu, System.DateTime ct, string lu, System.DateTime lt)
            {
                landRow rowlandRow = ((landRow)(this.NewRow()));

                rowlandRow.ItemArray = new object[] {
                    idland,
                    description,
                    cu,
                    ct,
                    lu,
                    lt
                };
                this.Rows.Add(rowlandRow);
                return(rowlandRow);
            }
Beispiel #2
0
 public landRowChangeEvent(landRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemovelandRow(landRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddlandRow(landRow row)
 {
     this.Rows.Add(row);
 }