I'll keep it simple. I have an API endpoint that receives 0 to 3 parameters. The get method look like this:...[HttpGet("filtrar")]
public ActionResult<List<TipoDocumento>> GetAllPorFiltro(string sigla, int? status, string descricao)
{
return _tipoDocu...