Example #1
0
 public ActionResult Create([Bind(Exclude = "Id")] Contacts contactToCreate)
 {
     if (_service.AddContact(contactToCreate))
     {
         return(RedirectToAction("Index"));
     }
     return(View("Create"));
 }