Merge branch 'fragment_navigation' of https://codefirst.iut.uca.fr/git/emre.kartal/Scor_It into fragment_navigation
continuous-integration/drone/push Build is passing Details

fragment_navigation
Emre KARTAL 2 years ago
commit 0c06af628b

@ -115,9 +115,7 @@ class Season {
class Match {
-id: Int
-idHomeTeam: Int
-score: Score
-idAwayTeam: Int
-status: String
}
@ -138,6 +136,9 @@ Team --> "-coach" Coach
Team --> "-squad*" Player
Team --> "-area" Area
Match --> "-HomeTeam" Team
Match --> "-AwayTeam" Team
Competition --> "-area" Area
Competition --> "-currentSeason" Season
@ -164,24 +165,27 @@ skinparam package {
hide circle
interface GenericDataManager {
+getItemsByName(substring: String) : List<T>
+getItems() : List<T>
+getItemById(id: Int) : T
}
class TeamsManager {
+getItemsByName(substring: String) : List<Team>
}
class CompetitionsManager {
+getItemsByName(substring: String) : List<Competition>
}
class MatchesManager {
}
class PeopleManager {
+getItemsByName(substring: String) : List<People>
}
class AreaManager {
+getItemsByName(substring: String) : List<Area>
}
abstract class DataManager {

Loading…
Cancel
Save