Пример #1
0
 public IActionResult Index()
 {
     var carrinho = _gerenciadorCarrinho.RecuperarCarrinho();
     var checkoutVM = new CheckoutViewModel
     {
         NumItens = carrinho.Itens.Count(),
         Total = carrinho.Total,
         FormasPagamento = new SelectList(
                 _repositorioFormasPagamento.GetAll(),
                 "Id",
                 "Nome")
     };
     return View(checkoutVM);
 }
Пример #2
0
 public IActionResult Index()
 {
     return(View(_gerenciadorCarrinho.RecuperarCarrinho()));
 }