Ejemplo n.º 1
0
 public Order CreateOrder(Customer customer, Store store)
 {
     return(new Order(customer, store));
 }
Ejemplo n.º 2
0
 public Order(Customer customer, Store store)
 {
     Customer = customer;
     Store    = store;
 }