Ejemplo n.º 1
0
 public Customer(CustomerId customerId, CustomerName customerName)
 {
     this.customerId   = customerId;
     this.customerName = customerName;
 }
Ejemplo n.º 2
0
 public static Customer SignUp(CustomerId id, CustomerName name)
 {
     return(new Customer(id, name));
 }