コード例 #1
0
        public ActionResult WelcomeParent()
        {
            IParentRepo repo   = new ParentRepo();
            Parent      parent = repo.Get(Session["UserEmail"].ToString());

            return(View(parent));
        }
コード例 #2
0
        public ActionResult UpdateParent(int id)
        {
            IParentRepo repo = new ParentRepo();

            return(View(repo.Get(id)));
        }