コード例 #1
0
ファイル: KeepService.cs プロジェクト: cunningdan/Keepr
        public Keep GetOne(int id)
        {
            Keep foundKeep = _repo.GetOne(id);

            foundKeep.Views++;
            this.EditVSK(foundKeep);
            return(foundKeep);
        }