Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Persistence/HeuristicLabMembershipUser.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: 751 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Web.Security;
6
7namespace Persistence {
8  public class HeuristicLabMembershipUser : MembershipUser {
9
10    public HeuristicLabMembershipUser(String providerName, String name, long providerUserKey, String email, String passwordQuestion, String comment, bool isApproved, bool isLockedOut, DateTime creationDate, DateTime lastLoginDate, DateTime lastActivityDate, DateTime lastPasswordChangeDate, DateTime lastLockoutDate)
11      : base(providerName, name, providerUserKey, email, passwordQuestion, comment, isApproved, isLockedOut, creationDate, lastLoginDate, lastActivityDate, lastPasswordChangeDate, lastLockoutDate) {
12
13    }
14
15
16  }
17}
Note: See TracBrowser for help on using the repository browser.