예제 #1
0
            public ListDistrictSelectionRow AddListDistrictSelectionRow(int DistrictID, string District, string Description, int RollYear)
            {
                ListDistrictSelectionRow rowListDistrictSelectionRow = ((ListDistrictSelectionRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    DistrictID,
                    District,
                    Description,
                    RollYear
                };
                rowListDistrictSelectionRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListDistrictSelectionRow);
                return(rowListDistrictSelectionRow);
            }
예제 #2
0
 public ListDistrictSelectionRowChangeEvent(ListDistrictSelectionRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveListDistrictSelectionRow(ListDistrictSelectionRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddListDistrictSelectionRow(ListDistrictSelectionRow row)
 {
     this.Rows.Add(row);
 }