public ActionResult Create([Bind(Include = "CategoriaId,CategoriaNome")] Categoria categoria) { if (ModelState.IsValid) { CategoriasDAO.Add(categoria); return(RedirectToAction("Index")); } return(View(categoria)); }
public ActionResult CreateNew([Bind(Include = "id,nombre")] object sender, EventArgs e) { try { // TODO: Add insert logic here CategoriasDTO categoria = new CategoriasDTO(); categoria.nombre = Request.Form["nombre"]; if (categoria.nombre != "") { var binaryReader = new BinaryReader(Request.Files["imagen"].InputStream); categoria.icono = binaryReader.ReadBytes(Request.Files["imagen"].ContentLength); categoriasDAO.Add(categoria); return(RedirectToAction("Index")); } return(PartialView("Create", categoria)); } catch { return(View()); } }