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