public ActionResult Edit(Turno turno) { if (ModelState.IsValid) { TurnoService.UpdateTurno(turno); return RedirectToAction(INDEX_VIEW); } else { return View(GetModel(turno)); } }
public ActionResult Create(Turno turno) { if (ModelState.IsValid) { TurnoService.CreateTurno(turno); return Json("Success", JsonRequestBehavior.AllowGet); //return RedirectToAction(INDEX_VIEW); } else { return Json("Error", JsonRequestBehavior.AllowGet); //return View(GetModel(turno)); } }
public void UpdateTurno(Turno Turno) { TurnoRepository.UpdateTurno(Turno); }
public void DeleteTurno(Turno Turno) { TurnoRepository.DeleteTurno(Turno); }
public void CreateTurno(Turno Turno) { TurnoRepository.CreateTurno(Turno); }
public ActionResult Delete(Turno turno) { TurnoService.DeleteTurno(turno); return Json(JSON_SUCCESS, JsonRequestBehavior.AllowGet); }
private TurnoViewModel GetModel(Turno turno) { return new TurnoViewModel(turno); }