Ejemplo n.º 1
0
 public ShoppingCartSummary(IShoppingCartUI IShoppingCartUI)
 {
     _IShoppingCartUI = IShoppingCartUI;
 }
Ejemplo n.º 2
0
 public OrderUI(IOrderBL _IOrderBL, IShoppingCartUI _IShoppingCartUI)
 {
     this._IOrderBL        = _IOrderBL;
     this._IShoppingCartUI = _IShoppingCartUI;
 }
 public ShoppingCartController(IShoppingCartUI IShoppingCartUI, IProductUI _IProductUI)
 {
     this._IProductUI      = _IProductUI;
     this._IShoppingCartUI = IShoppingCartUI;
 }