Exemple #1
0
 public HomeController(IMemberBLL memberBLL,
                       IOrderBLL orderBLL, IOrderStatusBLL orderStatusBLL,
                       IAddressBLL addressBLL)
 {
     _memberBLL      = memberBLL;
     _orderBLL       = orderBLL;
     _orderStatusBLL = orderStatusBLL;
     _addressBLL     = addressBLL;
 }
Exemple #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;
 }