public async Task VisitRepository_GetAllVisits_Call_GetResults_Test()
        {
            var context       = new MyCompanyContext();
            int expectedCount = context.Visits.Count();

            var target  = new VisitRepository(context);
            var results = await target.GetAllAsync();

            Assert.IsNotNull(results);
            Assert.IsTrue(results.Any());
        }