public ListExciseRateDistrictRow AddListExciseRateDistrictRow(int ExciseRateID, string District, short Year, string Description)
            {
                ListExciseRateDistrictRow rowListExciseRateDistrictRow = ((ListExciseRateDistrictRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ExciseRateID,
                    District,
                    Year,
                    Description
                };
                rowListExciseRateDistrictRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListExciseRateDistrictRow);
                return(rowListExciseRateDistrictRow);
            }
 public ListExciseRateDistrictRowChangeEvent(ListExciseRateDistrictRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveListExciseRateDistrictRow(ListExciseRateDistrictRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddListExciseRateDistrictRow(ListExciseRateDistrictRow row)
 {
     this.Rows.Add(row);
 }