public FixedAddressContactIdentifierHandler(ILogger logger, IXDbService xDbService, IXDbContactFactory xDbContactFactory)
 {
     this.logger            = logger;
     this.xDbService        = xDbService;
     this.xDbContactFactory = xDbContactFactory;
 }
 public FieldValueContactIdentifierHandler(ILogger logger, IXDbService xDbService, IXDbContactFactory contactFactory)
 {
     this.logger         = logger;
     this.xDbService     = xDbService;
     this.contactFactory = contactFactory;
 }
 protected IdentifyContactAction(ISubmitActionData submitActionData, ILogger logger, IXDbService xDbService, IXDbContactFactory xDbContactFactory) : base(submitActionData)
 {
     this.logger            = logger;
     this.xDbService        = xDbService;
     this.xDbContactFactory = xDbContactFactory;
 }