public ActionResult Create([Bind(Include = "idvoluntario,nombres,apellidos,cedula,telefono,fecha_nacimiento,direccion,sexo")] Voluntario voluntario) { if (ModelState.IsValid) { VoluntarioBLL.Create(voluntario); return(RedirectToAction("Index")); } return(View(voluntario)); }
public IHttpActionResult Post(Voluntario voluntario) { try { VoluntarioBLL.Create(voluntario); return(Content(HttpStatusCode.Created, "Voluntario creado correctamente")); } catch (Exception ex) { return(BadRequest(ex.Message)); } }