public ShoppingCartController(OrderService.IOrderService orderProxy)
 {
     this._orderProxy = orderProxy;
 }
Esempio n. 2
0
 public RestaurantController(RestaurantService.IRestaurantService proxy,
                             OrderService.IOrderService orderProxy)
 {
     this._proxy      = proxy;
     this._orderProxy = orderProxy;
 }