public void CreateNewCustomer(String password, String userName, String email) { String salt = _hashProvider.CreateSalt(8); Customer customer = new Customer { Password = password, PasswordSalt = salt, Identification = userName, Email = email }; }