示例#1
0
        public void FindByCustomerId_should_return_null_if_basket_not_found()
        {
            var basket = _sut.FindByCustomerId(_testCustomerId);

            basket.Should().BeNull();
        }
示例#2
0
 public Basket GetBasketByCustomerId(string customerId)
 {
     return(_basketStore.FindByCustomerId(customerId));
 }