Example #1
0
            public unassignedRow AddunassignedRow(bool Move, int competitorId, string Name, string Club, string Weapon, string WeaponClass)
            {
                unassignedRow rowunassignedRow = ((unassignedRow)(this.NewRow()));

                rowunassignedRow.ItemArray = new object[] {
                    Move,
                    competitorId,
                    Name,
                    Club,
                    Weapon,
                    WeaponClass
                };
                this.Rows.Add(rowunassignedRow);
                return(rowunassignedRow);
            }
 public void RemoveunassignedRow(unassignedRow row) {
     this.Rows.Remove(row);
 }
 public void AddunassignedRow(unassignedRow row) {
     this.Rows.Add(row);
 }
 public unassignedRowChangeEvent(unassignedRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
			public unassignedRowChangeEvent(unassignedRow row, DataRowAction action) {
				this.eventRow = row;
				this.eventAction = action;
			}
Example #6
0
 public void RemoveunassignedRow(unassignedRow row)
 {
     this.Rows.Remove(row);
 }
Example #7
0
 public void AddunassignedRow(unassignedRow row)
 {
     this.Rows.Add(row);
 }
Example #8
0
 public unassignedRowChangeEvent(unassignedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }