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); }
public MsUserRowChangeEvent(MsUserRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveMsUserRow(MsUserRow row) { this.Rows.Remove(row); }
public void AddMsUserRow(MsUserRow row) { this.Rows.Add(row); }