public void CallsDatabaseGatewayToCheckPersonAndOtherPersonExists()
        {
            _personalRelationshipsUseCase.ExecutePost(_request);

            _mockDatabaseGateway.Verify(gateway => gateway.GetPersonsByListOfIds(new List <long>()
            {
                _request.PersonId, _request.OtherPersonId
            }));
        }