public Order CreateOrder(Customer customer, Store store)
 {
     return(new Order(customer, store));
 }
Beispiel #2
0
 public Order(Customer customer, Store store)
 {
     Customer = customer;
     Store    = store;
 }