public LocationDataTableRow AddLocationDataTableRow(string LocationID, string LocationCode, string LocationName)
            {
                LocationDataTableRow rowLocationDataTableRow = ((LocationDataTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    LocationID,
                    LocationCode,
                    LocationName
                };
                rowLocationDataTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowLocationDataTableRow);
                return(rowLocationDataTableRow);
            }
 public LocationDataTableRowChangeEvent(LocationDataTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveLocationDataTableRow(LocationDataTableRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddLocationDataTableRow(LocationDataTableRow row)
 {
     this.Rows.Add(row);
 }