public user_profileRow Adduser_profileRow(string up_email, string up_last, string up_first, string up_airport, byte[] up_image)
            {
                user_profileRow rowuser_profileRow = ((user_profileRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    up_email,
                    up_last,
                    up_first,
                    up_airport,
                    up_image
                };
                rowuser_profileRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowuser_profileRow);
                return(rowuser_profileRow);
            }
 public void Removeuser_profileRow(user_profileRow row)
 {
     this.Rows.Remove(row);
 }
 public void Adduser_profileRow(user_profileRow row)
 {
     this.Rows.Add(row);
 }
 public user_profileRowChangeEvent(user_profileRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Пример #5
0
 public user_profileRowChangeEvent(user_profileRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Пример #6
0
 public void Removeuser_profileRow(user_profileRow row) {
     this.Rows.Remove(row);
 }
Пример #7
0
 public void Adduser_profileRow(user_profileRow row) {
     this.Rows.Add(row);
 }