public ListMasterNameDataTableRow AddListMasterNameDataTableRow(string LastName, string FirstName, string Address, int OwnerID)
            {
                ListMasterNameDataTableRow rowListMasterNameDataTableRow = ((ListMasterNameDataTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    LastName,
                    FirstName,
                    Address,
                    OwnerID
                };
                rowListMasterNameDataTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListMasterNameDataTableRow);
                return(rowListMasterNameDataTableRow);
            }
 public ListMasterNameDataTableRowChangeEvent(ListMasterNameDataTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveListMasterNameDataTableRow(ListMasterNameDataTableRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddListMasterNameDataTableRow(ListMasterNameDataTableRow row)
 {
     this.Rows.Add(row);
 }