Ejemplo n.º 1
0
        public List <MSGoalsEntity> GetPatientGoals(int patientId)
        {
            List <MSGoalsEntity> MSGoal = new List <MSGoalsEntity>();

            CCDAGeneration.MedicalNecessity objMS = new CCDAGeneration.MedicalNecessity();
            try
            {
                MSGoal = objMS.GetGoals(patientId, "L");
            }
            catch (Exception)
            {
                throw;
            }

            return(MSGoal);
        }