Esempio n. 1
0
        public void FindByCustomerId_should_return_null_if_basket_not_found()
        {
            var basket = _sut.FindByCustomerId(_testCustomerId);

            basket.Should().BeNull();
        }
Esempio n. 2
0
 public Basket GetBasketByCustomerId(string customerId)
 {
     return(_basketStore.FindByCustomerId(customerId));
 }