Some useful ValueObjects' abstractions.
If you want to use a ValueObject in your application, just implement the abstraction like the below example:
public class AgeStub : ValueObject<int>
{
public AgeStub(int age)
: base(age)
{
}
}♥ Made with love!