예제 #1
0
 private void Approve(NewPurchaseOrderCommand item)
 {
     // Interact w/ the databse and use external services to process a new purchase order request
 }
예제 #2
0
 private void Print(NewPurchaseOrderCommand item)
 {
     Console.WriteLine($"Purchase order request: Product={item.Product} Quatity={item.Quantity}");
 }