Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Why I can not insert any ZenUML diagram?

Zenuml sequence macro
uuidbeca16f4-e9c3-405a-bcbd-c5274631cff0
customContentId455737350
updatedAt2022-06-04T06:58:37Z
title Order Service (Demonstration only)
// Styling participants with background colors is an experimental feature.
// This feature is available for users to test and provide feedback.
@Actor Client #FFEBE6
@Boundary OrderController #0747A6
@EC2 <<BFF>> OrderService #E3FCEF
group BusinessService {
  @Lambda PurchaseService
  @AzureFunction InvoiceService
}

@Starter(Client)
//`POST /orders`
OrderController.post(payload) {
  OrderService.create(payload) {
    order = new Order(payload)
    if(order != null) {
      par {
        PurchaseService.createPO(order)
        InvoiceService.createInvoice(order)      
      }      
    }
  }
}

z