Skip to content

Instantly share code, notes, and snippets.

@waldyrfelix
Created July 6, 2011 01:46
Show Gist options
  • Save waldyrfelix/1066363 to your computer and use it in GitHub Desktop.
Save waldyrfelix/1066363 to your computer and use it in GitHub Desktop.
Exemplo de Action recebendo um ViewModel
[HttpPost]
public ActionResult AgendarPagamento(AgendamentoDePagamentoViewModel viewModel)
{
if (!ModelState.IsValid)
{
var contas = recuperarContasAPagar();
viewModel.MontarSelectListDeContas(contas);
return View(viewModel);
}
// logica de inserção
return RedirectToAction("Index");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment