#352- Unit Of Work : Update puml diagram.

This commit is contained in:
Piyush Chaudhari 2017-09-23 00:53:45 +05:30
parent 677f020813
commit a1ee8859d6
2 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -1,5 +1,9 @@
@startuml
package com.iluwatar.unitofwork {
class App {
+ App()
+ main(args : String[]) {static}
}
interface IUnitOfWork<T> {
+ DELETE : String {static}
+ INSERT : String {static}
@ -24,10 +28,6 @@ package com.iluwatar.unitofwork {
+ insert(student : Student)
+ modify(student : Student)
}
class StudentManagementApp {
+ StudentManagementApp()
+ main(args : String[]) {static}
}
class StudentRepository {
- LOGGER : Logger {static}
- context : Map<String, List<Student>>