Ejemplo n.º 1
0
 protected override bool ValidateDate(int year, int month, int day)
 {
     return(DuchPeselUtils.IsMonthLenghtValid(month) &&
            DuchPeselUtils.IsDayAmountValid(day) &&
            TypowyAdamPeselValidatorUtils.IsDayValid(year, month, day));
 }
Ejemplo n.º 2
0
 protected override bool Checksum(string pesel)
 {
     return(TypowyAdamPeselValidatorUtils.CheckCheckSum(pesel));
 }