예제 #1
0
        public ActionResult BuscaPorNome(string nome)
        {
            ViewBag.Nome = nome;

            IList <Categoria> categorias = dao.BuscaPorNome(nome);

            return(View(categorias));
        }