-
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.
- Loading branch information
1 parent
c507463
commit db4d16e
Showing
5 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 @@ | ||
## Activity package | ||
![](ActivityPackage.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions
53
doc/DomainModelDiagram/ActivityPackage/ActivityPackage.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,53 @@ | ||
@startuml | ||
package Family{ | ||
class AcademicCourse | ||
} | ||
package AfterSchool{ | ||
class AfterSchool{ | ||
Name : String | ||
} | ||
class AfterSchoolEdition{ | ||
Period: String | ||
Timetable: String | ||
} | ||
AfterSchool *-- "1..N" AfterSchoolEdition: "" | ||
AfterSchoolEdition o-- AcademicCourse | ||
|
||
abstract class Funding | ||
class Cultural | ||
class Sport | ||
class NoFunding | ||
Funding <|-- Cultural | ||
Funding <|-- Sport | ||
Funding <|-- NoFunding | ||
|
||
AfterSchool o-- Funding | ||
|
||
} | ||
package Custody{ | ||
class Custody | ||
class CustodyLevel{ | ||
Period: String | ||
} | ||
Custody *-- "1..N" CustodyLevel: "" | ||
Custody o-- AcademicCourse | ||
} | ||
|
||
package Camps{ | ||
class Camps | ||
class CampsLevel | ||
Camps *-- "1..N" CampsLevel: "" | ||
Camps o-- AcademicCourse | ||
} | ||
|
||
abstract class PricePerLevel{ | ||
Levels: String | ||
PriceForMember: float | ||
PriceForNoMember: float | ||
} | ||
|
||
CampsLevel <|-- PricePerLevel | ||
AfterSchoolEdition <|-- PricePerLevel | ||
CustodyLevel <|-- PricePerLevel | ||
|
||
@enduml |
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