internal Keep AddView(int id) { Keep keep = _repo.GetOne(id); int views = keep.Views + 1; keep.Views = views; _repo.AddView(keep); return(keep); }