Beispiel #1
0
            public MsUserRow AddMsUserRow(string id, string name, string city, string country)
            {
                MsUserRow rowMsUserRow = ((MsUserRow)(this.NewRow()));

                rowMsUserRow.ItemArray = new object[] {
                    id,
                    name,
                    city,
                    country
                };
                this.Rows.Add(rowMsUserRow);
                return(rowMsUserRow);
            }
Beispiel #2
0
 public MsUserRowChangeEvent(MsUserRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemoveMsUserRow(MsUserRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddMsUserRow(MsUserRow row)
 {
     this.Rows.Add(row);
 }