I'm learning about domain driven design and I'm a little bit confused about the place where I should put my business rules. Let's say that I have an aggregate root named Member which holds reference to entity Password. Password looks like this:
public class Password
{
public string Hash { get; private set; }
public string Salt { get; private set; }
public DateTime ExpirationDate { get; private set; }
public void GenerateNewPassword(string plainPassword)
{
//Some logic here
}
}
I also have a settings object named Settings. Settings are loaded from settings repository. This object has reference to another object named PasswordRules. Password rules of course checks password requirements within method CheckPasswordRequirements:
public bool CheckPasswordRequirements(string password)
{
//Some logic here
}
So my question is, is it the best place to hold this password rules or should I move this method to Password class as it is password object responsibility to check if given plain password meets requirements (then I should also put settings repository in Password entity) or should this check be done directly in the service that is creating member objects? And maybe there is some other elegant solution?
There's no definite answer that can be derived from the business logic. Both approaches are equally valid. I'd take a more pragmatic view:
CheckPasswordRequirements
method directly in thePassword
class and call it in the c'tor.PasswordChecker
). As a variant, you could also do this in form of an extension method: