Esempio n. 1
0
            public ONLclimbersRow AddONLclimbersRow(int iid, byte[] photo)
            {
                ONLclimbersRow rowONLclimbersRow = ((ONLclimbersRow)(this.NewRow()));

                rowONLclimbersRow.ItemArray = new object[] {
                    iid,
                    photo
                };
                this.Rows.Add(rowONLclimbersRow);
                return(rowONLclimbersRow);
            }
Esempio n. 2
0
 public ONLclimbersRowChangeEvent(ONLclimbersRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveONLclimbersRow(ONLclimbersRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddONLclimbersRow(ONLclimbersRow row)
 {
     this.Rows.Add(row);
 }