Skip to content

Instantly share code, notes, and snippets.

@joeybeninghove
Created October 28, 2009 03:26
Show Gist options
  • Save joeybeninghove/220208 to your computer and use it in GitHub Desktop.
Save joeybeninghove/220208 to your computer and use it in GitHub Desktop.
public void Continue()
{
var validationResult = _validator.Validate(View);
if (validationResult.HasErrors)
{
View.ShowErrorMessage(validationResult.Error.Message, validationResult.Error.Caption);
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment