public TeamsRow AddTeamsRow(int TeamsId, string TeamsName) { TeamsRow rowTeamsRow = ((TeamsRow)(this.NewRow())); rowTeamsRow.ItemArray = new object[] { TeamsId, TeamsName }; this.Rows.Add(rowTeamsRow); return(rowTeamsRow); }
public TeamsRowChangeEvent(TeamsRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveTeamsRow(TeamsRow row) { this.Rows.Remove(row); }
public void AddTeamsRow(TeamsRow row) { this.Rows.Add(row); }
public TeamsRowChangeEvent(TeamsRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }