public string ManagePatientBaselineAssessment(int id, int patientId, int patientMasterVisitId, bool pregnant, int hbvInfected
                                                      , bool tbInfected, int whoStage, bool breastfeeding, decimal cd4Count, decimal muac,
                                                      decimal weight, decimal height, int userId)
        {
            try
            {
                var  patientBaseline  = new PatientBaselineAssessmentManager();
                bool hbvInfectedvalue = false;
                if (LookupLogic.GetLookupNameById(hbvInfected) == "Yes")
                {
                    hbvInfectedvalue = true;
                }
                else
                {
                    hbvInfectedvalue = false;
                }


                _result = patientBaseline.ManagePatientBaselineAssessment(id, patientId, patientMasterVisitId, hbvInfectedvalue,
                                                                          pregnant,
                                                                          tbInfected, whoStage, breastfeeding, cd4Count, muac, weight, height, userId);

                if (_result > 0)
                {
                    _jsonMessage = "Patient Baseline Assessment Complete!";
                }
            }
            catch (Exception e)
            {
                _jsonMessage = e.Message + ' ' + e.InnerException;
            }
            return(_jsonMessage);
        }
Exemplo n.º 2
0
        public string ManagePatientBaselineAssessment(int id, int patientId, int patientMasterVisitId, bool pregnant, bool hbvInfected
                                                      , bool tbInfected, int whoStage, bool breastfeeding, decimal cd4Count, decimal muac,
                                                      decimal weight, decimal height, int userId)
        {
            try
            {
                var patientBaseline = new PatientBaselineAssessmentManager();

                _result = patientBaseline.ManagePatientBaselineAssessment(id, patientId, patientMasterVisitId, hbvInfected,
                                                                          pregnant,
                                                                          tbInfected, whoStage, breastfeeding, cd4Count, muac, weight, height, userId);

                if (_result > 0)
                {
                    _jsonMessage = "Patient Baseline Assessment Complete!";
                }
            }
            catch (Exception e)
            {
                _jsonMessage = e.Message + ' ' + e.InnerException;
            }
            return(_jsonMessage);
        }