vgquotes/Src/VideoGameQuotes.Api/User.cs
tmont 9a1f0347c0 * tests for user provider
* username is no longer required
* added ip address property to user
2011-02-10 21:04:13 +00:00

27 lines
818 B
C#

using System;
using Portoa.Logging;
using Portoa.Persistence;
using Portoa.Security;
namespace VideoGameQuotes.Api {
public class User : Entity<User, int>, IPasswordProtected {
private readonly IPasswordProtected passwordProtector = new NullAllowingPasswordProtector();
public User() {
Created = DateTime.UtcNow;
}
public virtual DateTime Created { get; set; }
public virtual string Username { get; set; }
public virtual string IpAddress { get; set; }
public virtual UserGroup Group { get; set; }
public virtual void ChangePassword([DoNotLog]string newPassword) {
passwordProtector.ChangePassword(newPassword);
}
public virtual bool VerifyPassword([DoNotLog]string potentialPassword) {
return passwordProtector.VerifyPassword(potentialPassword);
}
}
}