public void buscarPacienteFAT(string NroDocumento) { IFATService _fatService = new FATService(); this.paciente = new PacienteModel(); this.paciente = DTOToModel.pacienteModel(_fatService.getPacienteFAT(NroDocumento)); }
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; }