Created
October 15, 2018 03:34
-
-
Save luismts/63c7d2ed32da0ef3a6a9862294a644c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Email validations | |
Email.Validations.Add(new IsNotNullOrEmptyRule<string>{ ValidationMessage = "A email is required." }); | |
Email.Validations.Add(new EmailRule<string> { ValidationMessage = "Email is not valid." }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment