Ejemplo n.º 1
0
 public HEPostCode_02Rule(
     IPostcodeQueryService postcodeQueryService,
     IValidationErrorHandler validationErrorHandler)
     : base(validationErrorHandler, RuleNameConstants.HEPostCode_02)
 {
     _postcodeQueryService = postcodeQueryService;
 }
 public Postcode_15Rule(
     IPostcodeQueryService postcodeQueryService,
     IValidationErrorHandler validationErrorHandler)
     : base(validationErrorHandler, RuleNameConstants.Postcode_15)
 {
     _postcodeQueryService = postcodeQueryService;
 }
Ejemplo n.º 3
0
 private Postcode_15Rule NewRule(IPostcodeQueryService postcodeQueryService = null, IValidationErrorHandler validationErrorHandler = null)
 {
     return(new Postcode_15Rule(postcodeQueryService, validationErrorHandler));
 }
Ejemplo n.º 4
0
 public DelLocPostCode_11Rule(IPostcodeQueryService postcodeQueryService, IValidationErrorHandler validationErrorHandler)
     : base(validationErrorHandler, RuleNameConstants.DelLocPostCode_11)
 {
     _postcodeQueryService = postcodeQueryService;
 }