示例#1
0
        public User Create(User user)
        {
            Validate(user);

            string hashedPassword = Hash(user.Password);

            user.Password = hashedPassword;

            return(_dataManager.Create(user));
        }