public NaesbQuickResponseGet(
     IConfirmationResponseEventGet confirmationResponseEventGetService
     , INaesbQuickResponseHeaderGet naesbQuickResponseHeaderGetService
     , INaesbPipelineGetByPipeline naesbPipelineGetByPipelineService
     , INaesbUtilityGetByUtility naesbUtilityGetByUtilityService)
 {
     _confirmationResponseEventGetService = confirmationResponseEventGetService;
     _naesbQuickResponseHeaderGetService  = naesbQuickResponseHeaderGetService;
     _naesbPipelineGetByPipelineService   = naesbPipelineGetByPipelineService;
     _naesbUtilityGetByUtilityService     = naesbUtilityGetByUtilityService;
 }
 public NaesbConfirmationResponseCreate(
     ServiceSettings settings
     , INaesbEventProcessUpdate naesbEventProcessUpdateService
     , INaesbEventProcessCreate naesbEventProcessCreateService
     , IConfirmationResponseEventCreate confirmationResponseCreateService
     , IConfirmationResponseEventGet confirmationResponseGetService
     , INaesbEventGet naesbEventGetService
     )
 {
     _settings = settings;
     _naesbEventProcessUpdateService    = naesbEventProcessUpdateService;
     _naesbEventProcessCreateService    = naesbEventProcessCreateService;
     _confirmationResponseCreateService = confirmationResponseCreateService;
     _confirmationResponseGetService    = confirmationResponseGetService;
     _naesbEventGetService = naesbEventGetService;
 }