public void OnGet(int progressNoteId)
        {
            try
            {
                ProgressNoteData = m_ProgressNote.GetProgressNote(progressNoteId);
            }
            catch (Exception ex)

            {
                m_Log.CriticalEntry(User.Identity.Name, ex.ToString());
                throw;
            }
        }
Exemplo n.º 2
0
 public void OnGet(int caseIntakeId)
 {
     try
     {
         ProgressNoteData = new BeratenHealthcareModels.ProgressNote {
             CaseIntakeId = caseIntakeId, DateOfService = TimeZoneUtility.DateTimeNow, TimeOfService = TimeZoneUtility.DateTimeNow
         };
     }
     catch (Exception ex)
     {
         m_Log.CriticalEntry(User.Identity.Name, ex.ToString());
         throw;
     }
 }