private void Approve(NewCustomerCommand item)
 {
     // Interact w/ the databse and use external services to process a new purchase order request
 }
 private void Print(NewCustomerCommand item)
 {
     Console.WriteLine($"New customer request: {item.Name} in business: {item.BusinessDomain}");
 }