Exemplo n.º 1
0
        public virtual string GetPasswordHashAsync(ApplicationUser user)
        {
            if (user == null)
                throw new ArgumentNullException("user");

            return user.Password;
        }
Exemplo n.º 2
0
 public virtual string GetSecurityStampAsync(ApplicationUser user)
 {
     return user.UserName;
 }