コード例 #1
0
        public ActionResult CreateContact(Contact contact)
        {
            bool contactCreated = contactDAL.CreateNewContact(contact);

            return(RedirectToAction("CreateContactConfirmation", new { contactCreated = contactCreated }));
        }