public void Can_get_a_single_item_report()
        {
            DepositDetailsInMemoryRepository repository = new DepositDetailsInMemoryRepository(new DepositsInMemoryDb());

            repository.AddAsync(_details);
            DepositReportService reportService = new DepositReportService(repository, new ReceiptInMemoryRepository(), new ConsumerSessionInMemoryRepository(), Timestamper.Default);
            var report = reportService.GetAsync(new GetDepositsReport());

            report.Result.Deposits.Items.Should().HaveCount(1);
        }