コード例 #1
0
        public void buscarPacienteFAT(string NroDocumento)
        {
            IFATService _fatService = new FATService();

            this.paciente = new PacienteModel();
            this.paciente = DTOToModel.pacienteModel(_fatService.getPacienteFAT(NroDocumento));
        }
コード例 #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;
        }