public User Create(User user) { Validate(user); string hashedPassword = Hash(user.Password); user.Password = hashedPassword; return(_dataManager.Create(user)); }