Mise à jour de 'README.md'
continuous-integration/drone/push Build is passing Details

fragment_navigation
Emre KARTAL 2 years ago
parent 00ae844dce
commit 6495d3c0f4

@ -165,24 +165,27 @@ skinparam package {
hide circle hide circle
interface GenericDataManager { interface GenericDataManager {
+getItemsByName(substring: String) : List<T>
+getItems() : List<T> +getItems() : List<T>
+getItemById(id: Int) : T +getItemById(id: Int) : T
} }
class TeamsManager { class TeamsManager {
+getItemsByName(substring: String) : List<Team>
} }
class CompetitionsManager { class CompetitionsManager {
+getItemsByName(substring: String) : List<Competition>
} }
class MatchesManager { class MatchesManager {
} }
class PeopleManager { class PeopleManager {
+getItemsByName(substring: String) : List<People>
} }
class AreaManager { class AreaManager {
+getItemsByName(substring: String) : List<Area>
} }
abstract class DataManager { abstract class DataManager {

Loading…
Cancel
Save