Rafael J. BARROS
  • NEW!
    NEW!  Connect Ideas Across Notes
    Save time and share insights. With Paragraph Citation, you can quote others’ work with source info built in. If someone cites your note, you’ll see a card showing where it’s used—bringing notes closer together.
    Got it
      • Create new note
      • Create a note from template
        • Sharing URL Link copied
        • /edit
        • View mode
          • Edit mode
          • View mode
          • Book mode
          • Slide mode
          Edit mode View mode Book mode Slide mode
        • Customize slides
        • Note Permission
        • Read
          • Only me
          • Signed-in users
          • Everyone
          Only me Signed-in users Everyone
        • Write
          • Only me
          • Signed-in users
          • Everyone
          Only me Signed-in users Everyone
        • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invite by email
        Invitee

        This note has no invitees

      • Publish Note

        Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

        Your note will be visible on your profile and discoverable by anyone.
        Your note is now live.
        This note is visible on your profile and discoverable online.
        Everyone on the web can find and read all notes of this public team.

        Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

        Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

        Explore these features while you wait
        Complete general settings
        Bookmark and like published notes
        Write a few more notes
        Complete general settings
        Write a few more notes
        See published notes
        Unpublish note
        Please check the box to agree to the Community Guidelines.
        View profile
      • Commenting
        Permission
        Disabled Forbidden Owners Signed-in users Everyone
      • Enable
      • Permission
        • Forbidden
        • Owners
        • Signed-in users
        • Everyone
      • Suggest edit
        Permission
        Disabled Forbidden Owners Signed-in users Everyone
      • Enable
      • Permission
        • Forbidden
        • Owners
        • Signed-in users
      • Emoji Reply
      • Enable
      • Versions and GitHub Sync
      • Note settings
      • Note Insights New
      • Engagement control
      • Make a copy
      • Transfer ownership
      • Delete this note
      • Save as template
      • Insert from template
      • Import from
        • Dropbox
        • Google Drive
        • Gist
        • Clipboard
      • Export to
        • Dropbox
        • Google Drive
        • Gist
      • Download
        • Markdown
        • HTML
        • Raw HTML
    Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
    Create Create new note Create a note from template
    Menu
    Options
    Engagement control Make a copy Transfer ownership Delete this note
    Import from
    Dropbox Google Drive Gist Clipboard
    Export to
    Dropbox Google Drive Gist
    Download
    Markdown HTML Raw HTML
    Back
    Sharing URL Link copied
    /edit
    View mode
    • Edit mode
    • View mode
    • Book mode
    • Slide mode
    Edit mode View mode Book mode Slide mode
    Customize slides
    Note Permission
    Read
    Only me
    • Only me
    • Signed-in users
    • Everyone
    Only me Signed-in users Everyone
    Write
    Only me
    • Only me
    • Signed-in users
    • Everyone
    Only me Signed-in users Everyone
    Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Medical Booking System - 2025 ###### tags: `BPAS` [toc] :::info :bulb: **TO-BE Scenario vs 2.0 (Covid-19)** In this scenario, the **Medical Booking System (MBS)** is autonomous and available 24/7. Patient uses **MBS** to book the appointment without the need of the receptionist. Doctors are now required to keep their **online calendar** up to date. We will use an existing popular Calendar enterprise web solution ::: ## :memo: To Be workflow model ![](https://i.imgur.com/ZheE2Q7.png) ## :memo: Use Case Model from To-Be Workflow :::success * Do not convert **Manual activities** into use cases * For **interactive activities** (user task) the use cases are in relationship with the human actor. If multiple systems are involved, then they are also related with the other system * For **automated activities** (system task) the use cases are in relationship with the system actor * For **integration activities** (automated activities involving 2 systems) we depict two use cases for integration. ::: ![](https://i.imgur.com/wIUA6OR.png) ![](https://i.imgur.com/cWqs2sC.png) ## :memo: Modeling use cases ### Step 1: Identify Actors We identify one actor in the lecture. Mac as a patient. Recall that an actor portrays any entity (or entities) that performs certain roles in a given system. The different roles the actor represents are the actual business roles of users in a given system. An actor in a use case diagram interacts with a use case. For example, for modeling a banking application, a customer entity represents an actor in the application. Similarly, the person who provides service at the counter is also an actor. But it is up to you to consider what actors make an impact on the functionality that you want to model. If an entity does not affect a certain piece of functionality that you are modeling, it makes no sense to represent it as an actor. An actor is shown as a stick figure in a use case diagram depicted "outside" the system boundary, as shown in Make Appointment figure. To facilitate collaboration and quick use case modeling do check the [plantuml use case reference](https://plantuml.com/use-case-diagram) - [ ] Complete the Actors for the Medical Booking System To-Be Scenatio version 2 ```plantuml @startuml left to right direction 'Complete the Actors for the Medical Booking System Scenatio actor "Patient" as p actor "Doctor" as d actor "MBS" as m actor "Calendar" as c @enduml ``` ### Step 2: Identify use cases * The tasks that each Actor requires the system to perform. This may influence both the description of the Actor and the Use Case. * Whether each Actor needs to create, read, update, and/or delete any data to/from the system which is commonly referred to as “CRUD”: Create, Read, Update, and Delete. * If any of the Actors informs the system of any changes. * If any Actor requires notification of any system occurrences. - [ ] Complete the use cases for the Medical Booking System Scenatio below ```plantuml @startuml left to right direction 'Complete the use cases for the Medical Booking System Scenatio (Search for Doctor Availability) (Confirm Appointment Selection) (Checks Doctor Availability in Calendar) (Logins into MBS) (Reserve Appointment in Calendar) (Email Appointment Confirmation to Patient) (CRUD Calendar) (Reply Doctor Availability) (Confirm Appointment Reservation) @enduml ``` ### Step 3: Depict cases in graphical mode We use the relationship to represent the communication between the actor and the use case * Depicted by single-headed arrow line from Human Actor to Use Case * Depicted by double-headed arrow line to denote Integration of **IT Information Systems** ## Use case Solution ```plantuml @startuml left to right direction actor "Customer Service Officer" as CSO actor "Marketing Officer" as MO actor "RAS" as RAS actor "IMS" as IMS rectangle "UEN Gov Website" { usecase "Verify customer's UEN in Gov website" as UC2 } rectangle "IMS System" { usecase "Send match results to RAS" as UC10 usecase "Update customer selection sent by RAS" as UC11 } rectangle "RAS System" { usecase "Enter customer requirements in RAS" as UC1 usecase "View industrial spaces" as UC12 usecase "Update rental application rejection in RAS" as UC3 usecase "Update RAS of customer rejection" as UC14 usecase "View rental requirements in RAS" as UC4 usecase "Reserve customer selection in RAS" as UC13 usecase "Send customer request email to MO" as UC5 usecase "Send customer request SMS to MO" as UC6 usecase "Send customer application approval request email to LM" as UC7 usecase "Send match request to IMS" as UC8 usecase "Send customer selection to IMS" as UC9 } CSO --> UC1 CSO --> UC2 CSO --> UC3 CSO --> UC4 UC12 <-- MO UC13 <-- MO UC14 <-- MO UC4 <-- MO UC8 <--> IMS UC9 <--> IMS UC10 <--> RAS UC11 <--> RAS ' Invisible layout hints to force horizontal pairing UC1 -[hidden]-> UC12 UC4 -[hidden]-> UC13 UC3 -[hidden]-> UC14 UC6 -[hidden]-> UC9 UC5 -[hidden]-> UC8 ' Invisible layout hint to place IMS at the same level as UEN UC2 -[hidden]-> UC10 @enduml ``` ## :memo: Use Package ```plantuml @startuml left to right direction package "Calendar-CORE" { (CRUD Calendar) } package "MBS-Integration"{ (Checks Doctor Availability in Calendar) (Reserve Appointment in Calendar) } package "Calendar-Integration" { (Reply Doctor Availability) (Confirm Appointment Reservation) } package "MBS-CORE" { (Search for Doctor Availability) (Confirm Appointment Selection) (Logins into MBS) (Email Appointment Confirmation to Patient) } @enduml ``` ## :memo: Function Model | Function | Use Cases | New/Existing/To be modified | System/Comments | --------|-----------|-----------|-----------| | MBS-CORE |Search for Doctor Availability|* |MBS/Patient searchs for his doctor availability | | MBS-CORE |Confirm Appointment Selection|* |MBS/System acknowledges confirmation of appointment | | MBS-CORE |Logins into MBS|* |MBS/ Patient is authenticated in the system | | MBS-CORE |Email Appointment Confirmation to Patient|* |MBS/System acknowledges confirmation via email | | MBS-Integration |Checks Doctor Availability in Calendar|* |MBS/System integration with Calendar | | MBS-Integration |Reserve Appointment in Calendar|* |MBS/System integration with Calendar | | Calendar-Integration |Reply Doctor Availability|* |Calendar/System API Response | | Calendar-Integration |Confirm Appointment Reservation|* |Calendar/System API Response | | Calendar-CORE |CRUD Calendar|* |Calendar/Existing Cloud Solution| ## :construction_worker: Complete the form Work individually, in pairs or trios to [complete the Function Model](https://forms.office.com/r/8ubRSxpiNf) ``` @startuml set separator none title Software System - System Context left to right direction !include <C4/C4> !include <C4/C4_Context> Person(User, "User", $descr="", $tags="", $link="") System(SoftwareSystem, "Software System", $descr="", $tags="", $link="") Rel(User, SoftwareSystem, "Uses", $techn="", $tags="", $link="") SHOW_LEGEND(true) @enduml ``` ## Process inovation extension ![](https://i.imgur.com/m0nEs8G.png) Work individualy or in teams to brainstorm the different tasks in the process and how they can be augmented using innovative technologies. See below for a possible solution ![](https://i.imgur.com/jomAcwl.png)

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Google Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully