Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Zenuml sequence macro
uuid6ef174f1-821b-40eb-a996-817fa9d350bf
updatedAt2021-03-11T2011T21:0837:41Z25Z
WebPage.Display() {
 Controller.Display() {
   Controller.PrivateMethod() {
     AnotherClass.TEst()
     Foo.test()
     changes.shouldBeLogged()
   }
 }
}
Zenuml sequence macro lite
uuid01f8f3a5-c1b6-4f51-82d0-a166c34c2297
updatedAt2021-03-09T22:46:40Z
OrderController.create(payload) {
  
  OrderService.create(payload) {
    OrderRepo.save()
    OrderRepo.update()
  }
  
  OrderService.update(foo) {
    Some.bar()
  }
}