public async Task ThenThereIsRecordInTheContactTableAsync(int expected)
        {
            var actual = await firstContact.RetrieveCountAsync(test.ConnectionString);

            actual.Should().Be(expected);
        }