public IHttpActionResult DeleteMark(int id) { if (!MarkExists(id)) { return(NotFound()); } _repo.DeleteMark(id); _repo.SaveChanges(); return(Ok()); }