Example #1
0
            public UserRoleRow AddUserRoleRow(RoleRow parentRoleRowByRoleUserRole, UserRow parentUserRowByUser_UserRole)
            {
                UserRoleRow rowUserRoleRow = ((UserRoleRow)(this.NewRow()));

                rowUserRoleRow.ItemArray = new object[] {
                    parentRoleRowByRoleUserRole[0],
                    parentUserRowByUser_UserRole[0]
                };
                this.Rows.Add(rowUserRoleRow);
                return(rowUserRoleRow);
            }
Example #2
0
 public UserRoleRowChangeEvent(UserRoleRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveUserRoleRow(UserRoleRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddUserRoleRow(UserRoleRow row)
 {
     this.Rows.Add(row);
 }
 public UserRoleRowChangeEvent(UserRoleRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveUserRoleRow(UserRoleRow row) {
     this.Rows.Remove(row);
 }
 public void AddUserRoleRow(UserRoleRow row) {
     this.Rows.Add(row);
 }
 public UserRoleRowChangeEvent(UserRoleRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }