コード例 #1
0
 public ActionResult AppendPhonebook(Telephone telephone)
 {
     telephone.ContactId = (int)Session["ContactID"];
     manager.AppendPhones(telephone);
     return(RedirectToAction("Index", new { id = telephone.ContactId }));
 }