Example #1
0
 public string GetJSONPatientDemographics(DataTable dtPatientData, string EMRPatientID, string RequestID, string EMRID, string ModuleID, string UserID)
 {
     try
     {
         PatientDemographics objPatientDemographics = new PatientDemographics();
         string JSONString = objPatientDemographics.GenerateAPIJSONString(dtPatientData, EMRPatientID, RequestID, EMRID, ModuleID, UserID);
         return(JSONString);
     }
     catch (Exception)
     {
         throw;
     }
 }