Ejemplo n.º 1
0
 public ActionResult Create(Contact contact)
 {
     if (ModelState.IsValid)
     {
         HTTPService.CreateBpmEntityByOdataWcfExample(contact);
         return(RedirectToAction("Index"));
     }
     else
     {
         return(View(contact));
     }
 }