You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
319 B

10 years ago
  1. using Microsoft.AspNet.Identity;
  2. namespace Sevomin.Models.Helpers
  3. {
  4. public class SevominUserManager : UserManager<User>
  5. {
  6. public SevominUserManager(IUserStore<User> store) : base(store)
  7. {
  8. this.UserValidator = new SevominUserValidator();
  9. }
  10. }
  11. }