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