Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2015
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. public class Patient
  2. {
  3. public int Id { get; set; }
  4. public int Height { get; set; }
  5. public int Age { get; set; }
  6. public List<PatientAllergy> PatientAllergies { get; set; }
  7. public List<Operation> Operation { get; set; }
  8. public List<HealthCondition> ConditionName { get; set; }
  9. public PatientWeight weight { get; set; }
  10. public List<PatientJab> jab { get; set; }
  11. public List<PatientBloodTest> test { get; set; }
  12. public List<PatientExercises> exercise { get; set; }
  13. }
  14.  
  15. public class PatientAllergy
  16. {
  17. public int Id { get; set; }
  18. public string AllergyType { get; set; }
  19. }
  20.  
  21. public class PatientJab
  22. {
  23. public int Id { get; set; }
  24. public string Type { get; set; }
  25. public List<DateTime> DateDone { get; set; }
  26. }
  27.  
  28. public class PatientExercises
  29. {
  30. public int Id { get; set; }
  31. public int Swimming { get; set; }
  32. public int Walking { get; set; }
  33. public int Gym { get; set; }
  34. public string Month { get; set; }
  35. }
  36.  
  37. public class HealthCondition
  38. {
  39. public int Id { get; set; }
  40. public string Name { get; set; }
  41. }
  42.  
  43. public class Operation
  44. {
  45. public int Id { get; set; }
  46. public string Name { get; set; }
  47. }
  48.  
  49. public class PatientWeight
  50. {
  51. public int Id { get; set; }
  52. public DateTime DateChecked { get; set; }
  53. public double Weight { get; set; }
  54. }
  55.  
  56. public class PatientBloodTest
  57. {
  58. public int Id { get; set; }
  59. public string TestType { get; set; }
  60. public DateTime DateTaken { get; set; }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement