Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4021 was 4002, checked in by bfarka, 14 years ago

made struture changes in persistence classes and provider

File size: 414 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       if (this.ID == null && ((HeuristicLabUserRole)obj).ID == null)
10        {
11         return base.Equals(obj);
12        }
13        return ((HeuristicLabUserRole)obj).ID.Equals(this.ID);
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.