Пример #1
0
 public string updateUnderstandingHIV(int patientId, int patientMasterVisitId, int createdBy, int understandHIVEffects, int understandART, int understandSideEffects,
                                      int understandAdherenceBenefits, int understandConsequences, int uId)
 {
     try
     {
         var UH = new AdherenceLogic();
         Result = UH.updateUnderstandingHIV(patientId, patientMasterVisitId, createdBy, understandHIVEffects, understandART, understandSideEffects, understandAdherenceBenefits, understandConsequences, uId);
         if (Result > 0)
         {
             Msg = "Understanding of HIV infection and ART updated";
         }
     }
     catch (Exception e)
     {
         Msg = e.Message;
     }
     return(Msg);
 }