public void DeleteUserMovieMark(MarkEntity mark)
 {
     markRepository.Delete(mark.ToDalMark());
 }
 public void UpdateUserMovieMark(MarkEntity mark)
 {
     markRepository.Update(mark.ToDalMark());
 }
Beispiel #3
0
 public void UpdateMark(MarkEntity mark)
 {
     _markRepository.Update(mark.ToDalMark());
     _uow.Commit();
 }
 public void AddUserMovieMark(MarkEntity mark)
 {
     markRepository.Create(mark.ToDalMark());
 }
Beispiel #5
0
 public ActionResult DeleteConfirmed(MarkEntity mark)
 {
     _service.DeleteMark(mark);
     return RedirectToAction("Index");
 }