예제 #1
0
        // GET: Tutor
        public ActionResult Index()
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new TutorService(userId);
            var model   = service.GetAllTutors();

            return(View(model));
        }