public void AddPlayerStatsRow(PlayerStatsRow row) {
     this.Rows.Add(row);
 }
 public void RemovePlayerStatsRow(PlayerStatsRow row) {
     this.Rows.Remove(row);
 }
 public PlayerStatsRowChangeEvent(PlayerStatsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }