Skip to content

Commit

Permalink
feat: change model
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioMaestroTecnalia committed Nov 22, 2022
1 parent c507463 commit db4d16e
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 3 deletions.
2 changes: 0 additions & 2 deletions doc/DomainModelDiagram/ActivityPackage.md

This file was deleted.

2 changes: 2 additions & 0 deletions doc/DomainModelDiagram/ActivityPackage/ActivityPackage.md
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 doc/DomainModelDiagram/ActivityPackage/ActivityPackage.puml
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
2 changes: 1 addition & 1 deletion doc/DomainModelDiagram/DomainModelDiagram.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[Family package](FamilyPackage/FamilyPackage.md)

[Activity package](ActivityPackage.md)
[Activity package](ActivityPackage/ActivityPackage.md)

[ActivityRegistration package](ActivityRegistrationPackage.md)

Expand Down

0 comments on commit db4d16e

Please sign in to comment.