public ItemCountRecentService(IItemCountRecentRepository repo) => repository = repo;
 public ItemCountRecentServiceTest()
 {
     iRepositoryFake = Substitute.For <IItemCountRecentRepository>();
     sut             = new ItemCountRecentService(iRepositoryFake);
 }