Esempio n. 1
0
 public PatientStatusHistory GetCurrentStatus()
 {
     if (PatientStatusHistories.Count == 0)
     {
         return(null);
     }
     else
     {
         return(PatientStatusHistories.OrderByDescending(psh => psh.EffectiveDate).ThenByDescending(psh => psh.Id).First());
     }
 }