Skip to content

Instantly share code, notes, and snippets.

View gabrieldelaparra's full-sized avatar
🌊
Creating!

Gabriel De La Parra gabrieldelaparra

🌊
Creating!
View GitHub Profile
@GrantByrne
GrantByrne / UserValidator.cs
Created April 24, 2014 06:02
Using Fluent Validation with WPF - Dead Simple
using System.Text.RegularExpressions;
using FluentValidation;
using WpfFluentValidationExample.ViewModels;
namespace WpfFluentValidationExample.Lib
{
public class UserValidator : AbstractValidator<UserViewModel>
{
public UserValidator()
{