示例#1
0
        public ActionResult Lista()
        {
            try
            {
                ProductAPI api   = new ProductAPI();
                var        lista = api.GetAll(Util.Configuracao.PerfilSelecionadoLogado.Cliente.Id);

                return(View(lista));
            }
            catch (Exception)
            {
                throw;
            }
        }