Advertisement
Guest User

Untitled

a guest
May 28th, 2015
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5.  
  6. namespace MyMedicalRecord_1.Models
  7. {
  8. public class Patient
  9. {
  10. public int Id { get; set; }
  11. public int Height { get; set; }
  12. public int Age { get; set; }
  13. public List<PatientAllergy> PatientAllergies { get; set; }
  14. public List<string> Operations { get; set; }
  15. public List<string> HealthConditions { get; set; }
  16. }
  17. }
  18.  
  19.  
  20. using System;
  21. using System.Collections.Generic;
  22. using System.Linq;
  23. using System.Web;
  24.  
  25. namespace MyMedicalRecord_1.Models
  26. {
  27. public class PatientBloodTest
  28. {
  29. public int Id { get; set; }
  30. public string TestType { get; set; }
  31. public DateTime DateTaken { get; set; }
  32. }
  33. }
  34.  
  35.  
  36.  
  37. using System;
  38. using System.Collections.Generic;
  39. using System.Linq;
  40. using System.Web;
  41.  
  42. namespace MyMedicalRecord_1.Models
  43. {
  44. public class PatientJab
  45. {
  46. public int Id { get; set; }
  47. public string Type { get; set; }
  48. public List<DateTime> DateDone { get; set; }
  49. }
  50. }
  51.  
  52.  
  53. using System;
  54. using System.Collections.Generic;
  55. using System.Linq;
  56. using System.Web;
  57.  
  58. namespace MyMedicalRecord_1.Models
  59. {
  60. public class PatientWeight
  61. {
  62. public int Id { get; set; }
  63. public DateTime DateChecked { get; set; }
  64. public double Weight { get; set; }
  65. }
  66. }
  67.  
  68.  
  69.  
  70. using System;
  71. using System.Collections.Generic;
  72. using System.Linq;
  73. using System.Web;
  74.  
  75. namespace MyMedicalRecord_1.Models
  76. {
  77. public class PatientExercises
  78. {
  79. public int Id { get; set; }
  80. public int Swimming { get; set; }
  81. public int Walking { get; set; }
  82. public int Gym { get; set; }
  83. public string Month { get; set; }
  84. }
  85. }
  86.  
  87.  
  88.  
  89. using System;
  90. using System.Collections.Generic;
  91. using System.Linq;
  92. using System.Text;
  93.  
  94. namespace MyMedicalRecord_1.Models
  95. {
  96. public class PatientAllergy
  97. {
  98. public int Id { get; set; }
  99. public string AllergyType { get; set; }
  100. }
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement