public GenericPesquisa GetAll( short pagina, short qtd, string campo, short ordem, [FromServices] GrupoService service, string filtro = "" ) { Pesquisa pesquisa = new Pesquisa(pagina, qtd, campo, ordem, filtro); GenericPesquisa result = new GenericPesquisa( service.GetAll(pesquisa), service.GetTotalDeRegistros(pesquisa) ); return(result); }