21 lines
703 B
Plaintext
21 lines
703 B
Plaintext
@startuml
|
|
class Employee {
|
|
+ Id : int <<get>> <<set>>
|
|
+ FirstName : string <<get>> <<set>>
|
|
+ LastName : string <<get>> <<set>>
|
|
+ MiddleName : string? <<get>> <<set>>
|
|
+ Gender : string <<get>> <<set>>
|
|
+ PeramnentAddress : string <<get>> <<set>>
|
|
+ CurrentAddress : string <<get>> <<set>>
|
|
+ PhoneNumber : string <<get>> <<set>>
|
|
+ EmergencyPhoneNumber : string <<get>> <<set>>
|
|
+ AadharNumber : string? <<get>> <<set>>
|
|
+ PanNumber : string? <<get>> <<set>>
|
|
+ ApplicationUserId : string? <<get>> <<set>>
|
|
+ TenantId : int <<get>> <<set>>
|
|
}
|
|
Employee --> "BirthDate" DateTime
|
|
Employee --> "ApplicationUser" ApplicationUser
|
|
Employee --> "Tenant" Tenant
|
|
@enduml
|