public void GetByIDShouldThrowExceptionWhenProductDoesntExist()
        {
            var productID = Guid.NewGuid();

            repo.Invoking(x => x.GetByID(productID)).Should().Throw <ProductNotFoundException>();
        }