public EventActorMapRow AddEventActorMapRow(int EventID, int EventActorID) { EventActorMapRow rowEventActorMapRow = ((EventActorMapRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, EventID, EventActorID }; rowEventActorMapRow.ItemArray = columnValuesArray; this.Rows.Add(rowEventActorMapRow); return(rowEventActorMapRow); }
public EventActorMapRowChangeEvent(EventActorMapRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveEventActorMapRow(EventActorMapRow row) { this.Rows.Remove(row); }
public void AddEventActorMapRow(EventActorMapRow row) { this.Rows.Add(row); }