public IEnumerable <CategoriaViewModel> Filtrar(string campo, string texto, string ativo = "A", int idCliente = 0, bool contem = true)
 {
     try
     {
         //var lista = _categoriaServico.Filtrar(campo, texto, ativo, contem, idCliente);
         var lista = _servicoCategoria.Filtrar(campo, texto, ativo, contem, idCliente);
         var model = lista.Adapt <CategoriaViewModel[]>();
         return(model);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }