public void ShouldRetriveAllEagerInpectionsAsync()
        {
            using (var context = InitAndGetDbContext())
            {
                //Arrange
                var repositori = new InspectionRepository(context);

                //Act
                IEnumerable <Inspection> result = repositori.GetAllEagerAsync().Result;

                //Assert
                Assert.Equal(3, result.Count());
            }
        }