public PlaceRow AddPlaceRow(string PlaceID, string TypeID, string Name, string Address, string Notes, string AdministratorID, string TypeName)
            {
                PlaceRow rowPlaceRow = ((PlaceRow)(this.NewRow()));

                rowPlaceRow.ItemArray = new object[] {
                    PlaceID,
                    TypeID,
                    Name,
                    Address,
                    Notes,
                    AdministratorID,
                    TypeName
                };
                this.Rows.Add(rowPlaceRow);
                return(rowPlaceRow);
            }
 public PlaceRowChangeEvent(PlaceRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovePlaceRow(PlaceRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddPlaceRow(PlaceRow row)
 {
     this.Rows.Add(row);
 }