public ActionResult WelcomeParent() { IParentRepo repo = new ParentRepo(); Parent parent = repo.Get(Session["UserEmail"].ToString()); return(View(parent)); }
public ActionResult UpdateParent(int id) { IParentRepo repo = new ParentRepo(); return(View(repo.Get(id))); }