create.wsd 467 B

1234567891011121314151617181920212223
  1. @startuml Create Order Flow
  2. title "Create Order"
  3. actor Apps as app
  4. participant Server as server
  5. database Database as db
  6. autonumber
  7. app -> app: Select service options
  8. app -> server ++: Get All Avalible Coupon
  9. server -> app --
  10. app -> server ++: Do Wallet Transaction (Include consume coupon)
  11. server -> db: Create Reservation
  12. server --> app: Send reservation result through email service
  13. server -> app --: Response reservation result
  14. ' Temporary Finished
  15. @enduml