Ejemplo n.º 1
0
 public void RemovePlayersRow(PlayersRow row) {
     this.Rows.Remove(row);
 }
Ejemplo n.º 2
0
 public PlayerStatsRow AddPlayerStatsRow(PlayersRow parentPlayersRowByPlayerStats_Players, int Goals, int Assists, int SOG, int Hits, int PlusMinus, int Penalties, int PIM, int FOW, int ShotsFaced, int Saves, decimal SavePercent, int TOI) {
     PlayerStatsRow rowPlayerStatsRow = ((PlayerStatsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             Goals,
             Assists,
             SOG,
             Hits,
             PlusMinus,
             Penalties,
             PIM,
             FOW,
             ShotsFaced,
             Saves,
             SavePercent,
             TOI};
     if ((parentPlayersRowByPlayerStats_Players != null)) {
         columnValuesArray[0] = parentPlayersRowByPlayerStats_Players[0];
     }
     rowPlayerStatsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowPlayerStatsRow);
     return rowPlayerStatsRow;
 }
Ejemplo n.º 3
0
 public void AddPlayersRow(PlayersRow row) {
     this.Rows.Add(row);
 }
Ejemplo n.º 4
0
 public PlayersRowChangeEvent(PlayersRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }