コード例 #1
0
 public PlaceOrderCommandHandler(
     IBus bus,
     ICartStoreService cartStoreService)
 {
     _bus = bus;
     _cartStoreService = cartStoreService;
 }
コード例 #2
0
        public static ShoppingCart GetCart(ICartStoreService cartStoreService)
        {
            var cart = new ShoppingCart
            {
                ShoppingCartId = cartStoreService.GetCartId()
            };

            return cart;
        }
コード例 #3
0
        public static ShoppingCart GetCart(ICartStoreService cartStoreService)
        {
            var cart = new ShoppingCart
            {
                ShoppingCartId = cartStoreService.GetCartId()
            };

            return(cart);
        }
コード例 #4
0
 public ShoppingCartController(IBus bus, ICartStoreService cartStoreService)
 {
     _bus = bus;
     _cartStoreService = cartStoreService;
 }
コード例 #5
0
 public ShoppingCartController(IBus bus, ICartStoreService cartStoreService)
 {
     _bus = bus;
     _cartStoreService = cartStoreService;
 }