public OrderController(IOrderProxy orderProxy,
                        ICustomerProxy customerProxy,
                        ICatalogProxy catalogProxy)
 {
     _catalogProxy  = catalogProxy;
     _orderProxy    = orderProxy;
     _customerProxy = customerProxy;
 }
コード例 #2
0
 public OrdersController(IOrderProxy orderProxy,
                         ICustomerProxy customerProxy,
                         ICatalogProxy catalogProxy
                         )
 {
     this.orderProxy    = orderProxy;
     this.customerProxy = customerProxy;
     this.catalogProxy  = catalogProxy;
 }
コード例 #3
0
 public CreateModel(
     ILogger <DetailModel> logger,
     IOrderProxy orderProxy,
     ICustomerProxy clientProxy,
     ICatalogProxy productProxy
     )
 {
     _orderProxy   = orderProxy;
     _clientProxy  = clientProxy;
     _productProxy = productProxy;
 }
コード例 #4
0
 public ClientsController(ICustomerProxy customerProxy
                          )
 {
     this.customerProxy = customerProxy;
 }
コード例 #5
0
 public ClientController(
     ICustomerProxy customerProxy
     )
 {
     _customerProxy = customerProxy;
 }
コード例 #6
0
 public Get(ICustomerProxy proxy)
 {
     this.proxy = proxy;
 }
コード例 #7
0
 public CustomerLogic(ICustomerProxy customerProxy)
 {
     _customerProxy = customerProxy;
 }