Esempio n. 1
0
 public bool ValidateFormatNumberByCountry(ref string TextOfPhone)
 {
     return(ValidatorOfPhone.ValidateFormatNumber(ref TextOfPhone));
 }
Esempio n. 2
0
 public bool ValidateIsEmptyByCountry(string TextOfPhone)
 {
     return(ValidatorOfPhone.ValidateIsEmpty(TextOfPhone));
 }
Esempio n. 3
0
 public bool ValidateIsNumericByCountry(string TextOfPhone)
 {
     return(ValidatorOfPhone.ValidateIsNumeric(TextOfPhone));
 }
Esempio n. 4
0
 public void SetValidators(ValidatorOfPhone NewValidatorOfPhone, ValidatorOfMessage NewValidatorOfMessage)
 {
     ValidatorOfPhone   = NewValidatorOfPhone;
     ValidatorOfMessage = NewValidatorOfMessage;
 }