public void SetPatientStatus(PatientStatus patientStatus) { var patientStatusHistory = new PatientStatusHistory() { Patient = this, EffectiveDate = DateTime.Today, Comments = "New Patient", PatientStatus = patientStatus }; this.PatientStatusHistories.Add(patientStatusHistory); }
public void ChangePatientStatus(PatientStatus patientStatus, DateTime effectiveDate, string comments) { var newPatientStatusHistory = new PatientStatusHistory(patientStatus, effectiveDate, comments); PatientStatusHistories.Add(newPatientStatusHistory); }