using InventoryTraker.Web.Core; using Microsoft.AspNet.Identity; namespace InventoryTraker.Web.Identity { public class ApplicationUserManager : UserManager { public ApplicationUserManager(IUserStore store) : base(store) { UserValidator = new UserValidator(this) { AllowOnlyAlphanumericUserNames = false, RequireUniqueEmail = true }; } } }