Diagram

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Diagram Personelle 2024/04/07 astah* Evaluation

pkg

CurdRepository<User, Integer>
+ Save(User) : User
index.html MainControler + findAll() : Itrable<User>
HomePage + findById(id) : optional<User>
+ showHomePage() + deletById(id) : int

Users.html
UserList UserServices
UserControler
- repo : UserRepository
- Service : UserService User
+ listAll() : List<User>
+ ShowUserListe() UserRepository - id : int
+ save(user : int)
+ ShowNewForm() - email : String
+ get(id : int) : User + countById(id) : long
+ SaveUser() - firstName : String
+ delet(id : int) : User
+ ShowEditForm() - lastName : String
+ DeletUser() - enabled : boolean

User_Form. UserRepositoryTests
html
User Form - repo : UserRepository
+ testAddNew()
+ testListAll()
+ testUpdate()
+ testGet()
+ testDelet()

1/1

You might also like