AdventureWorks.WebServices.Tests.Mocks.MockShoppingCartRepository.IShoppingCartRepository C# (CSharp) Method

IShoppingCartRepository() private method

private IShoppingCartRepository ( string shoppingCartId, string productId ) : bool
shoppingCartId string
productId string
return bool
        bool IShoppingCartRepository.RemoveProductFromCart(string shoppingCartId, string productId)
        {
            return RemoveProductFromCartDelegate(shoppingCartId, productId);
        }

Same methods

MockShoppingCartRepository::IShoppingCartRepository ( string shoppingCartId ) : ShoppingCart
MockShoppingCartRepository::IShoppingCartRepository ( ShoppingCart shoppingCart, string itemId ) : bool
MockShoppingCartRepository::IShoppingCartRepository ( string userId ) : bool
MockShoppingCartRepository::IShoppingCartRepository ( string shoppingCartId, AdventureWorks.WebServices.Models.Product product ) : void
MockShoppingCartRepository