Ejemplo n.º 1
0
        public void getPacientePSxApellidos(string apellidos)
        {
            IConsultaPlanSaludService wsplan = new ConsultaPlanSaludService();

            this.pacientes = new List <PacienteModel>();
            this.pacientes = DTOToModel.listPaciente(wsplan.getAfiliadoPorApellidos(apellidos));
        }
Ejemplo n.º 2
0
        public void getPacientePS(string docident, string tipoDocumento)
        {
            IConsultaPlanSaludService wsplan = new ConsultaPlanSaludService();

            this.paciente = new PacienteModel();
            var paciente = wsplan.getAfiliadoPorDocumento(docident, tipoDocumento);

            this.paciente = (paciente != null) ? DTOToModel.pacienteModel(paciente) : null;
        }
Ejemplo n.º 3
0
        public List <BeneficioModel> listaBeneficiosPS(string term)
        {
            IConsultaPlanSaludService service = new ConsultaPlanSaludService();

            return(DTOToModel.listarBeneficios(service.getbeneficioForzados(term)));
        }