public virtual bool PostcodeConditionMet(string delLocPostCode)
 {
     return(delLocPostCode != ValidationConstants.TemporaryPostCode &&
            !_postcodesDataService.PostcodeExists(delLocPostCode));
 }
 public bool PostcodeConditionMet(string postcode)
 {
     return(!_postcodesDataService.PostcodeExists(postcode));
 }
예제 #3
0
 public bool PostcodeConditionMet(string lsdPostcode) => !_postcodesDataService.PostcodeExists(lsdPostcode);