public ActionResult Delete(Planta planta) { Planta p = PlantaService.ReadPlantaById(planta.Id); p.Activo = false; PlantaService.UpdatePlanta(p); //PlantaService.DeletePlanta(planta); return Json(JSON_SUCCESS, JsonRequestBehavior.AllowGet); }
public ActionResult Create(Planta planta) { if (ModelState.IsValid) { //planta.Activo = true; PlantaService.CreatePlanta(planta); return Json("Success", JsonRequestBehavior.AllowGet); //return RedirectToAction(INDEX_VIEW); } else { return Json("Error", JsonRequestBehavior.AllowGet); //return View(GetModel(planta)); } }
public void UpdatePlanta(Planta planta) { PlantaRepository.UpdatePlanta(planta); }
public void DeletePlanta(Planta planta) { PlantaRepository.DeletePlanta(planta); }
public void CreatePlanta(Planta planta) { PlantaRepository.CreatePlanta(planta); }
public PlantaViewModel(Planta planta) { Planta = planta; }
private PlantaViewModel GetModel(Planta planta) { return new PlantaViewModel(planta); }
public ActionResult Edit(Planta planta) { if (ModelState.IsValid) { planta.Activo = true; PlantaService.UpdatePlanta(planta); return RedirectToAction(INDEX_VIEW); } else { return View(GetModel(planta)); } }