Patient.cs 683 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. namespace UpdateDataTool.Models
  3. {
  4. class Patient:Entity
  5. {
  6. public string IdentityCardId { get; set; }
  7. public string ImagePath { get; set; }
  8. public string Nationality { get; set; }
  9. public string Address { get; set; }
  10. public byte[] Image { get; set; }
  11. public DateTime? ExpireDate { get; set; }
  12. /// <summary>
  13. /// Fisrt Name of Patient
  14. /// </summary>
  15. public string FirstName { get; set; }
  16. /// <summary>
  17. /// Last Name of Patient
  18. /// </summary>
  19. public string LastName { get; set; }
  20. /// <summary>
  21. /// Birthday of Patient
  22. /// </summary>
  23. public DateTime? Birthday { get; set; }
  24. public GenderType GenderType { get; set; }
  25. }
  26. }