예제 #1
0
        public ActionResult Index()
        {
            var posts = _repo.GetNinjasWithClan();

            return(View(posts));
        }
예제 #2
0
        // GET: Ninjas
        public ActionResult Index()
        {
            var ninjas = _repo.GetNinjasWithClan();

            return(View(ninjas.ToList()));
        }