public async Task <IEnumerable <Produto> > GetAllProduto(string idCliente, string token)
 {
     return(await ProdutoBO.GetAllAsync(int.Parse(idCliente), token));
 }