示例#1
0
        // GET: Order

        public OrderController(Product.IProductAppService _IProdAppService, Orders.IOrderAppService _iOrderRepositorys, UserAddress.IUserAddressAppService userAddressService, OrderComment.IOrderCommentAppService commentAppService)
        {
            this._prodAppService     = _IProdAppService;
            this._orderRepository    = _iOrderRepositorys;
            this._userAddressService = userAddressService;
            this._commentAppService  = commentAppService;
        }
示例#2
0
 public SSUserController(Orders.IOrderAppService _orderAppService, SS_User.ISs_UserAppService _userAppService)
 {
     userAppService = _userAppService;
 }
示例#3
0
 public PCOrderController(Orders.IOrderAppService _orderAppService, SS_User.ISs_UserAppService _userAppService, WeUser.IWeUserAppService iUserAppService)
 {
     orderAppService  = _orderAppService;
     userAppService   = _userAppService;
     _iUserAppService = iUserAppService;
 }