Exemple #1
0
 public ActionResult Edit(Mark mark)
 {
     _service.UpdateMark(mark.ToBllMark());
     return RedirectToAction("Index");
 }
Exemple #2
0
 public ActionResult Create(Mark mark)
 {
     _service.CreateMark(mark.ToBllMark());
     return RedirectToAction("Index");
 }