예제 #1
0
            public ListZoningRow AddListZoningRow(int ZoningID, string Zoning, string ZoningCode)
            {
                ListZoningRow rowListZoningRow = ((ListZoningRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ZoningID,
                    Zoning,
                    ZoningCode
                };
                rowListZoningRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListZoningRow);
                return(rowListZoningRow);
            }
예제 #2
0
 public ListZoningRowChangeEvent(ListZoningRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveListZoningRow(ListZoningRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddListZoningRow(ListZoningRow row)
 {
     this.Rows.Add(row);
 }