#352- Unit Of Work : Add Student model and puml diagram

This commit is contained in:
Piyush Chaudhari
2017-09-16 18:11:00 +05:30
parent 4ecc337c7d
commit e43b6f13fd
2 changed files with 56 additions and 0 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