コード例 #1
0
 public CustomerServices(ref Customer inputCustomer)
 {
     _thisCustomer  = inputCustomer;
     _cartServices  = new CartServices(ref _thisCustomer);
     _orderServices = new OrderServices(ref _thisCustomer);
 }