Exemple #1
0
        public ActionResult MyEvents()
        {
            IserviceEvent spe = new ServiceEvent();

            List <Event> eve = spe.GetMany(x => x.creator.username == User.Identity.Name).ToList();

            return(View(eve));
        }