public void RemoveUserRelationShipRow(UserRelationShipRow row) {
     this.Rows.Remove(row);
 }
 public UserRelationShipRowChangeEvent(UserRelationShipRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddUserRelationShipRow(UserRelationShipRow row) {
     this.Rows.Add(row);
 }