Update 'Documents/Diagramme/DiagrammeDeClasses/README_accesDonnees.md'
continuous-integration/drone/push Build is failing Details

master
Antoine PEREDERII 1 year ago
parent 4609a3e3d1
commit c4adf90c8d

@ -26,7 +26,7 @@ Explorez ce diagramme pour découvrir la robustesse de notre architecture de ges
```plantuml ```plantuml
@startuml couche_acces_aux_donnees @startuml couche_acces_aux_donnees
abstract class IGenericRepository { interface IGenericRepository {
+ getItemById(int id) : object + getItemById(int id) : object
+ getNbItems() : int + getNbItems() : int
+ getItems(int index, int count, string orderingPropertyName, bool descending) : array + getItems(int index, int count, string orderingPropertyName, bool descending) : array
@ -36,7 +36,7 @@ abstract class IGenericRepository {
+ addItem(item) : void + addItem(item) : void
+ deleteItem(item) : bool + deleteItem(item) : bool
} }
abstract class IUserRepository extends IGenericRepository { interface IUserRepository extends IGenericRepository {
} }
interface INotificationRepository extends IGenericRepository { interface INotificationRepository extends IGenericRepository {
} }

Loading…
Cancel
Save