Example #1
0
 private void RaiseCancelOrderInteractionRequest()
 {
     CommonOrderCommandConfirmRequest.Raise(
         new ConditionalConfirmation {
         Content = "Are you sure you want to cancel order?".Localize(), Title = "Cancel Order".Localize()
     },
         (x) =>
     {
         if (x.Confirmed)
         {
             _innerModel.CancelOrder();
             Recalculate();
         }
     });
 }