10.0: NoteDelete
Delete GET Method and View
[ActionName("Delete")] public ActionResult Delete(int id) { var svc = CreateNoteService(); var model = svc.GetNoteById(id); return View(model); }
Delete POST Method
NoteService
Last updated


