In the world of MVC I have this view model...
public class MyViewModel{ [Required] public string FirstName{ get; set; } }
...and this s
public class GenericRequired: RequiredAttribute { public GenericRequired() { this.ErrorMessage = "{0} Blah blah"; } }