-
Notifications
You must be signed in to change notification settings - Fork 0
Sequence diagrams
Mathea Gjerde edited this page Apr 23, 2026
·
5 revisions
Some sequence diagrams for the core functionalities of the system
Image of Sequence diagram of the process when selecting a organization.
The diagram in PlantUML format:
@startuml org-select
title selecting organization
actor User
participant CausesPageView
participant OrganizationController
participant OrganizationService
participant OrganizationRepository
participant AppState
participant NavigationController
participant OrganizationPageView
User -> CausesPageView : choose donation
CausesPageView -> OrganizationController : getOrgById(id)
OrganizationController -> OrganizationService : findByOrgNumber(id)
OrganizationService -> OrganizationRepository : findByOrgNumber(id)
OrganizationRepository --> OrganizationService : Organization
OrganizationService --> OrganizationController : Organization
OrganizationController -> AppState :setCurrentOrganization(org)
OrganizationController -> NavigationController : showOrganizationPage()
NavigationController -> OrganizationPageView : create and show
@endumlImage of Sequence diagram of the process when donating to a selected organization.
📘 Project Wiki
Last updated: April 2026
Maintained by (BIDATA) Team 5 in the course IDATT1005