Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ToDo App sample #74

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
76 changes: 76 additions & 0 deletions Samples/ToDoApp/Architecture/ToDoApp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
ToDoAppExample:
SoftwareSystems:
ToDoApp:
Containers:
Database:
Interfaces:
SelectTasks: {}
InsertTask: {}
UpdateTask: {}
DeleteTask: {}
WebApi:
Interfaces:
GetTasks:
Flows:
- Type: Use
Expression: Database.Interfaces.SelectTasks
AddTask:
Flows:
- Type: Use
Expression: Database.Interfaces.InsertTask
UpdateTask:
Flows:
- Type: Use
Expression: Database.Interfaces.UpdateTask
DeleteTask:
Flows:
- Type: Use
Expression: Database.Interfaces.DeleteTask
MarkTaskAsDone:
Flows:
- Type: Use
Expression: Database.Interfaces.UpdateTask
MobileApp:
Interfaces:
ViewTasks:
Flows:
- Type: Use
Expression: WebApi.Interfaces.GetTasks
AddTask:
Flows:
- Type: Use
Expression: WebApi.Interfaces.AddTask
UpdateTask:
Flows:
- Type: Use
Expression: WebApi.Interfaces.UpdateTask
DeleteTask:
Flows:
- Type: Use
Expression: WebApi.Interfaces.DeleteTask
MarkTaskAsDone:
Flows:
- Type: Use
Expression: WebApi.Interfaces.MarkTaskAsDone
WebApp:
Interfaces:
ViewTasks:
Flows:
- Type: Use
Expression: WebApi.Interfaces.GetTasks
AddTask:
Flows:
- Type: Use
Expression: WebApi.Interfaces.AddTask
UpdateTask:
Flows:
- Type: Use
Expression: WebApi.Interfaces.UpdateTask
DeleteTask:
Flows:
- Type: Use
Expression: WebApi.Interfaces.DeleteTask
MarkTaskAsDone:
Flows:
- Type: Use
Expression: WebApi.Interfaces.MarkTaskAsDone
Loading