Skip to content

Instantly share code, notes, and snippets.

@rvlieshout
Created July 7, 2011 13:54
Show Gist options
  • Save rvlieshout/1069563 to your computer and use it in GitHub Desktop.
Save rvlieshout/1069563 to your computer and use it in GitHub Desktop.
A validator
public class CreateNewNoteValidator : AbstractValidator<CreateNewNote>
{
public CreateNewNoteValidator()
{
RuleFor(command => command.NoteId).NotEqual(Guid.Empty);
RuleFor(cmd => cmd.Text).Length(1, 140);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment