public void Get_all_items_should_return_correct_count()
        {
            var expectedCount = MockItems.Count();
            var result        = _applicationServices.GetAllItems().Count;

            Assert.That(expectedCount == result);
        }