コード例 #1
0
ファイル: HomeController.cs プロジェクト: mmgusta/eventos
        public ActionResult Index()
        {
            EventoDAL evento = new EventoDAL();
            IList <CadastroEventoModel> lista = evento.ListarTodos();


            return(View(lista));
        }