#352- Unit Of Work : [Refactor] Change module name to unit-of-work.

This commit is contained in:
Piyush Chaudhari
2017-09-16 21:39:09 +05:30
parent 68ed2a4726
commit 5fe9d2be6c
8 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1,10 @@
@startuml
package com.iluwatar.unitofwork {
class Student {
- address : String
- id : Integer
- name : String
+ Student(id : Integer, name : String, address : String)
}
}
@enduml