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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Web.Security;
|
---|
6 |
|
---|
7 | namespace 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.