From 00ae844dce0f20e9c5311df87b2b146cf8687ea2 Mon Sep 17 00:00:00 2001 From: Emre KARTAL Date: Fri, 24 Mar 2023 15:51:13 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'README.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 39e24c0..a99e583 100644 --- a/README.md +++ b/README.md @@ -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 From 6495d3c0f4e9379c61689963ded7deccd18c516b Mon Sep 17 00:00:00 2001 From: Emre KARTAL Date: Fri, 24 Mar 2023 16:13:40 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'README.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a99e583..cfec8c5 100644 --- a/README.md +++ b/README.md @@ -165,24 +165,27 @@ skinparam package { hide circle interface GenericDataManager { - +getItemsByName(substring: String) : List +getItems() : List +getItemById(id: Int) : T } class TeamsManager { + +getItemsByName(substring: String) : List } class CompetitionsManager { + +getItemsByName(substring: String) : List } class MatchesManager { } class PeopleManager { + +getItemsByName(substring: String) : List } class AreaManager { + +getItemsByName(substring: String) : List } abstract class DataManager {