public EverythingOperationHandler(IPatientEverythingService patientEverythingService, IBundleFactory bundleFactory, IAuthorizationService <DataActions> authorizationService)
        {
            EnsureArg.IsNotNull(patientEverythingService, nameof(patientEverythingService));
            EnsureArg.IsNotNull(bundleFactory, nameof(bundleFactory));
            EnsureArg.IsNotNull(authorizationService, nameof(authorizationService));

            _patientEverythingService = patientEverythingService;
            _bundleFactory            = bundleFactory;
            _authorizationService     = authorizationService;
        }