示例#1
0
 public void VisitCustomerCommand(NewCustomerCommand customerCommand)
 {
 }
 public void VisitCustomerCommand(NewCustomerCommand customerCommand)
 {
     report.AppendLine($"New customer request: {customerCommand.Name} in business: {customerCommand.BusinessDomain}");
 }
 public void VisitCustomerCommand(NewCustomerCommand customerCommand)
 {
     toSave.Add(customerCommand);
 }
 public void VisitCustomerCommand(NewCustomerCommand customerCommand)
 {
     Console.WriteLine($"We have new customer! {customerCommand.Name} welcome!");
 }