public async Task <IActionResult> ObtenerListaTercero([FromQuery(Name = "numeroIdentificacion")] string numeroIdentificacion, [FromQuery(Name = "nombre")] string nombre) { var datos = await _repo.ObtenerListaTercero(numeroIdentificacion, nombre); return(Ok(datos)); }