예제 #1
0
 public UmbracoRange(int minimum, int maximum, string umbracoDictionaryKey)
     : base(minimum, maximum)
 {
     this.ErrorMessage = UmbracoHelper.GetDictionaryItem(umbracoDictionaryKey);
 }
예제 #2
0
 public UmbracoRegularExpression(string pattern, string umbracoDictionaryKey) : base(pattern)
 {
     this.ErrorMessage = UmbracoHelper.GetDictionaryItem(umbracoDictionaryKey);
 }
예제 #3
0
 public UmbracoEmail(string umbracoDictionaryKey) : base(GetRegex())
 {
     this.ErrorMessage = UmbracoHelper.GetDictionaryItem(umbracoDictionaryKey);
 }