public Validator AreNotEqual(string value, string text, string property, int code) => AreNotEqual(value, text, property, NotificationMessage.ByCode(code));
 public Validator Contains(string value, string text, string property, int code) => Contains(value, text, property, NotificationMessage.ByCode(code));
 public Validator IsNotNullOrEmpty(string value, string property, int code) => IsNotNullOrEmpty(value, property, NotificationMessage.ByCode(code));
 public Validator HasLength(string value, int length, string property, int code) => HasLength(value, length, property, NotificationMessage.ByCode(code));
 public Validator HasMaxLength(string value, int max, string property, int code) => HasMaxLength(value, max, property, NotificationMessage.ByCode(code));
 public Validator Matchs(string text, string pattern, string property, int code) => Matchs(text, pattern, property, NotificationMessage.ByCode(code));
 public Validator IsUrl(string url, string property, int code) => IsUrl(url, property, NotificationMessage.ByCode(code));
 public Validator IsEmail(string email, string property, int code) => IsEmail(email, property, NotificationMessage.ByCode(code));