public void DeleteBooksWithCountMoreThanValue_DeletesBooksWithCountValueMoreThanDefined()
        {
            var countValue = 3;

            var preDeleteCount = TestData.Books.Count();

            _repository.DeleteBooksWithCountMoreThanValue(countValue);

            var postDeleteCount = GetAllCount();

            Assert.True(preDeleteCount > postDeleteCount);
        }