コード例 #1
0
ファイル: EventController.cs プロジェクト: Aberos/Inter
        public ActionResult UserEvents()
        {
            using (EventoModel model = new EventoModel())
            {
                ViewBag.UserEvents = model.MyEvents((Session["usuario"] as Usuario).Id_usuario);
            }


            return(View());
        }