Exemple #1
0
 public void NotifyCustomer(CustomerOrderDTO order)
 {
     StoreNotification.Notify(order, $"An employee has updated your oder with the status: {order.OrderStatus.Name}.");
 }
Exemple #2
0
 public void NotifyEmployee(CustomerOrderDTO order)
 {
     StoreNotification.Notify(order, $"An order has a new status: {order.OrderStatus.Name}. Please review it.");
 }