public async Task <Unit> Handle(CreateContactInformationCommand request, CancellationToken cancellationToken)
        {
            await _reportRepository.AddContactInformationToPerson(request.ContactInformation, cancellationToken);

            return(Unit.Value);
        }