Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. //código da classe General.cs
  2. #region Case Management
  3. [Table("DischargeInstructions")]
  4. public partial class DischargeInstructions : DefaultColumns
  5. {
  6. [Key]
  7. public Guid DischargeInstructionsId { get; set; }
  8.  
  9. public String ClientName { get; set; }
  10. [ForeignKey("MRN")]
  11. public Guid MRNId { get; set; }
  12. public virtual MRN MRN { get; set; }
  13. public DateTime DateOfAdmission { get; set; }
  14. public DateTime DateOfDischarge { get; set; }
  15. public String ReasonForAdmission { get; set; }
  16. public String ReasonForDischarge { get; set; }
  17. public String Strengths { get; set; }
  18. public String Needs { get; set; }
  19. public String Abilities { get; set; }
  20. public String Preferences { get; set; }
  21. public String GoalsAndObjectives { get; set; }
  22. public String GoalsObjectivesWereMet { get; set; }
  23. public String ProgressOfTheRecoveryClient { get; set; }
  24.  
  25. public String ProvidedServices { get; set; }
  26. [Required]
  27. [StringLength(255)]
  28. public String PsychiatristName { get; set; }
  29. public String ContactNumber { get; set; }
  30. public String Address { get; set; }
  31. public DateTime AppointmentDateTime { get; set; }
  32. public String OtherServices { get; set; }
  33.  
  34. public virtual ICollection<DischargeInstructionPractitioner> Practitioners { get; set; }
  35.  
  36. public String RecommendationFollowUpSupport { get; set; }
  37. public String RefferedTo { get; set; }
  38. public String ContactName { get; set; }
  39. public String AdditionalCommentsAboutReferrals { get; set; }
  40.  
  41. public String PersonParticipatingDischargePlan { get; set; }
  42.  
  43. public String CaseManagerSignature { get; set; }
  44. public DateTime? CaseManagerSignatureDate { get; set; }
  45.  
  46. public String ClientReceived { get; set; }
  47. public String CMReviewedDistributedCrisis { get; set; }
  48. public String ClientImportancePsychiatricFollowUpVisit { get; set; }
  49. public String ClientUtilizeCrisis { get; set; }
  50.  
  51. public String ClientSignature { get; set; }
  52. public DateTime? ClientSignatureDate { get; set; }
  53. }
  54. [Table("DischargeInstructionPractitioner")]
  55. public partial class DischargeInstructionPractitioner: DefaultColumns
  56. {
  57. [Key]
  58. public Guid DischargeInstructionPractitionerId { get; set; }
  59.  
  60. [ForeignKey("DischargeInstructions")]
  61. public Guid DischargeInstructionsId { get; set; }
  62. public virtual DischargeInstructions DischargeInstructions { get; set; }
  63.  
  64. public String Practitioner { get; set; }
  65. public DateTime ApptDate { get; set; }
  66. public Decimal Time { get; set; }
  67. public String ContactInfo { get; set; }
  68. }
  69.  
  70. #endregion
  71.  
  72.  
  73. //código da classe HarborVillageEntities.cs
  74. #region Case Management
  75. public virtual DbSet<DischargeInstructionPractitioner> DischargeInstructionPractitioner { get; set; }
  76. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement