Remove the GetValidationService() protected method
Closed this issue · 0 comments
mauroservienti commented
To customize the validation service for a ViewModel it's necessary to override the IValidationService GetValidationService()
protected method. It makes little sense. It's much easier to make so that the protected IValidationService ValidationService
is writable and is initialized to NullValidationService.Instance
. Users in their constructors can replace the validation service.