コード例 #1
0
ファイル: OrderRepository.cs プロジェクト: ndphuong/Peasy.NET
 public OrderRepository(ICustomerDataProxy customerDataProxy, IOrderItemDataProxy orderItemDataProxy) : base()
 {
     _customerDataProxy  = customerDataProxy;
     _orderItemDataProxy = orderItemDataProxy;
 }
コード例 #2
0
 public CustomerService(ICustomerDataProxy dataProxy, OrderService orderService) : base(dataProxy)
 {
     _orderService = orderService;
 }