Пример #1
0
 public string addAdherenceReferrals(int patientId, int patientMasterVisitId, int createdBy, int patientReferred, int appointmentsAttended, string experience)
 {
     try
     {
         var AL = new AdherenceLogic();
         Result = AL.addReferrals(patientId, patientMasterVisitId, createdBy, patientReferred, appointmentsAttended, experience);
         if (Result > 0)
         {
             Msg = "Referrals and Networks added successfully";
         }
     }
     catch (Exception e)
     {
         Msg = e.Message;
     }
     return(Msg);
 }