Skip to content

Commit

Permalink
Added ToDo App sample (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlavaVedernikov authored Apr 6, 2024
2 parents 2a5ffcd + 265fd26 commit 3f598d7
Show file tree
Hide file tree
Showing 511 changed files with 6,816 additions and 0 deletions.
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

0 comments on commit 3f598d7

Please sign in to comment.