Exemplo n.º 1
0
 public static Either <string, Customer> TryCreate(CustomerName customerName)
 {
     return(Right(new Customer(customerName)));
 }
Exemplo n.º 2
0
 private Customer(CustomerName customerName)
 {
     CustomerName = customerName;
 }