示例#1
0
 public OrderRepository(ICustomerDataProxy customerDataProxy, IOrderItemDataProxy orderItemDataProxy) : base()
 {
     _customerDataProxy  = customerDataProxy;
     _orderItemDataProxy = orderItemDataProxy;
 }
示例#2
0
 public CustomerService(ICustomerDataProxy dataProxy, OrderService orderService) : base(dataProxy)
 {
     _orderService = orderService;
 }