12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- namespace UpdateDataTool.Models
- {
- class Patient:Entity
- {
- public string IdentityCardId { get; set; }
- public string ImagePath { get; set; }
- public string Nationality { get; set; }
- public string Address { get; set; }
- public byte[] Image { get; set; }
- public DateTime? ExpireDate { get; set; }
- /// <summary>
- /// Fisrt Name of Patient
- /// </summary>
- public string FirstName { get; set; }
- /// <summary>
- /// Last Name of Patient
- /// </summary>
- public string LastName { get; set; }
- /// <summary>
- /// Birthday of Patient
- /// </summary>
- public DateTime? Birthday { get; set; }
- public GenderType GenderType { get; set; }
- }
- }
|