Exemplo n.º 1
0
        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));
        }