-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add diagram for ImportationPackage.md
- Loading branch information
1 parent
67d94c9
commit 2de29e3
Showing
5 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions
2
doc/DomainModelDiagram/ImportationPackage/ImportationPackage.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## Importation package | ||
![](ImportationPackage.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 66 additions & 0 deletions
66
doc/DomainModelDiagram/ImportationPackage/ImportationPackage.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
@startuml | ||
abstract class Importation { | ||
dateTime : dateTime | ||
file : File | ||
} | ||
class CustodyImportation { | ||
custodyEdition: CustodyEdition | ||
} | ||
class CustodyImportationRow { | ||
row: int | ||
} | ||
class CustodyChildImportData { | ||
days_attended: int | ||
} | ||
class HolderImportData { | ||
iban: str | ||
} | ||
class ChildWithSurnamesImportData { | ||
surnames: str | ||
} | ||
class ChildImportData { | ||
name: str | ||
birth_year: Optional[int] | ||
level: Optional[LevelConstants] | ||
} | ||
class ParentImportData { | ||
holder_name_and_surnames: str | ||
phone_number: str | ||
email: str | ||
} | ||
abstract class CustodyImportationAction | ||
abstract class CustodyImportationActionFamily | ||
abstract class CustodyImportationActionChild | ||
abstract class CustodyImportationActionHolder | ||
class UseFamily | ||
class CreateFamily | ||
class UseChild | ||
class CreateChild | ||
class UseHolder | ||
class CreateHolder | ||
class CreateCustodyRegistration | ||
|
||
Importation <|-- CustodyImportation: "" | ||
|
||
CustodyImportation *-- "0..N" CustodyImportationRow: "" | ||
|
||
CustodyImportationRow -- CustodyChildImportData: "" | ||
CustodyImportationRow -- "0..1" HolderImportData: "" | ||
CustodyImportationRow *-- "0..N" CustodyImportationAction: "" | ||
|
||
CustodyChildImportData -- ChildWithSurnamesImportData: "" | ||
ChildWithSurnamesImportData -- ChildImportData: "" | ||
|
||
HolderImportData -- ParentImportData: "" | ||
|
||
CustodyImportationAction <|-- CustodyImportationActionFamily: "" | ||
CustodyImportationAction <|-- CreateCustodyRegistration: "" | ||
CustodyImportationAction <|-- CustodyImportationActionChild: "" | ||
CustodyImportationAction <|-- CustodyImportationActionHolder: "" | ||
CustodyImportationActionFamily <|-- UseFamily: "" | ||
CustodyImportationActionFamily <|-- CreateFamily: "" | ||
CustodyImportationActionChild <|-- UseChild: "" | ||
CustodyImportationActionChild <|-- CreateChild: "" | ||
CustodyImportationActionHolder <|-- UseHolder: "" | ||
CustodyImportationActionHolder <|-- CreateHolder: "" | ||
@enduml |