示例#1
0
 public CartController(ICartBLL cartBLL, IMemberBLL memberBLL, IGoodsBLL goodsBLL, IGoodsImagesBLL goodsImagesBLL, IRulesBLL rulesBLL)
 {
     _cartBLL       = cartBLL;
     _memberBLL     = memberBLL;
     _goodsBLL      = goodsBLL;
     _goodsImageBLL = goodsImagesBLL;
     _rulesBLL      = rulesBLL;
 }
示例#2
0
 public OrderController(IOrderDetailBLL orderDetailBLL, IOrderBLL orderBLL,
                        IMemberBLL memberBLL, IGoodsBLL goodsBLL, IAddressBLL addressBLL,
                        IGoodsImagesBLL goodsImagesBLL, ICartBLL cartBLL, IRulesBLL rulesBLL,
                        IOrderStatusBLL orderStatusBLL)
 {
     _orderDetailBLL = orderDetailBLL;
     _orderBLL       = orderBLL;
     _memberBLL      = memberBLL;
     _goodsBLL       = goodsBLL;
     _addressBLL     = addressBLL;
     _goodsImagesBLL = goodsImagesBLL;
     _cartBLL        = cartBLL;
     _rulesBLL       = rulesBLL;
     _orderStausBLL  = orderStatusBLL;
 }