コード例 #1
0
 public ShoppingCartController(OrderService.IOrderService orderProxy)
 {
     this._orderProxy = orderProxy;
 }
コード例 #2
0
 public RestaurantController(RestaurantService.IRestaurantService proxy,
                             OrderService.IOrderService orderProxy)
 {
     this._proxy      = proxy;
     this._orderProxy = orderProxy;
 }