public NaesbEventGetRfcsToProcess(
     INaesbEventRepository repository
     , IRequestForConfirmationGet requestForConfirmationGetService)
 {
     _repository = repository;
     _requestForConfirmationGetService = requestForConfirmationGetService;
 }
 public NaesbRequestForConfirmationCreate(
     ServiceSettings settings
     , INaesbEventProcessUpdate naesbEventProcessUpdateService
     , INaesbEventProcessCreate naesbEventProcessCreateService
     , IRequestForConfirmationGet requestForConfirmationGetService
     , IRequestForConfirmationEventCreate requestForConfirmationEventCreateService
     , INaesbRequestForConfirmationHeaderGet naesbRequestForConfirmationHeaderGetService
     , INaesbRequestForConfirmationGet naesbRequestForConfirmationGetService
     , INaesbEventGet naesbEventGetService
     )
 {
     _settings = settings;
     _naesbEventProcessUpdateService              = naesbEventProcessUpdateService;
     _naesbEventProcessCreateService              = naesbEventProcessCreateService;
     _requestForConfirmationGetService            = requestForConfirmationGetService;
     _requestForConfirmationEventCreateService    = requestForConfirmationEventCreateService;
     _naesbRequestForConfirmationHeaderGetService = naesbRequestForConfirmationHeaderGetService;
     _naesbRequestForConfirmationGetService       = naesbRequestForConfirmationGetService;
     _naesbEventGetService = naesbEventGetService;
 }