Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Persistence/HeuristicLabUserRole.cs @ 3966

Last change on this file since 3966 was 3955, checked in by bfarka, 14 years ago

created impl and test of AddUsersToRoles (#1046)

File size: 390 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Persistence {
7  partial class HeuristicLabUserRole {
8    public override bool Equals(object obj) {
9      return ((HeuristicLabUserRole)obj).HeuristicLabRole.Equals(this.HeuristicLabRole) && ((HeuristicLabUserRole)obj).HeuristicLabUser.Equals(this.HeuristicLabUser);
10    }
11  }
12}
Note: See TracBrowser for help on using the repository browser.