Example #1
0
        public ActionResult Edit(int id)
        {
            List <Produto> produtos        = new ProdutoRepository().GetAll().ToList();
            SelectList     listaDeProdutos = new SelectList(produtos, "ProdutoId", "Nome");

            ViewBag.ProdutosListName = listaDeProdutos;

            _campanhaRepository = new CampanhaRepository();
            return(View(_campanhaRepository.GetAll().FirstOrDefault(c => c.CampanhaId == id)));
        }
Example #2
0
 //[HttpGet]
 public ActionResult Index()
 {
     _campanhaRepository = new CampanhaRepository();
     ModelState.Clear();
     return(View(_campanhaRepository.GetAll()));
 }