public authorsRow AddauthorsRow(string au_id, string au_lname, string au_fname, string phone, string address, string city, string state, string zip, bool contract) { authorsRow rowauthorsRow = ((authorsRow)(this.NewRow())); rowauthorsRow.ItemArray = new object[] { au_id, au_lname, au_fname, phone, address, city, state, zip, contract }; this.Rows.Add(rowauthorsRow); return(rowauthorsRow); }
public authorsRowChangeEvent(authorsRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveauthorsRow(authorsRow row) { this.Rows.Remove(row); }
public void AddauthorsRow(authorsRow row) { this.Rows.Add(row); }
public authorsRowChangeEvent(authorsRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }