// GET: Regras/Create public ActionResult Create() { ViewBag.GrupoDeRegrasId = new SelectList(_grupoDeRegrasAppService.GetAll(), "GrupoDeRegrasId", "Descricao"); return(View()); }
// GET: GruposDeRegras public ActionResult Index() { var grupoDeRegrasViewModel = Mapper.Map <IEnumerable <GrupoDeRegras>, IEnumerable <GrupoDeRegrasViewModel> >(_grupoDeRegrasApp.GetAll()); return(View(grupoDeRegrasViewModel)); }