Exemplo n.º 1
0
 public LengthValidator(IMessageProducer messageProducer, int validLength)
 {
     baseValidator    = new BaseValidator(messageProducer);
     this.validLength = validLength;
 }
Exemplo n.º 2
0
 public LengthValidator(int validLength)
 {
     this.validLength = validLength;
     baseValidator    = new BaseValidator();
 }