Exemple #1
0
        internal string EditViewsCount(int id)
        {
            var exists = _repo.GetById(id);

            if (exists == null)
            {
                throw new Exception("Invalid ID");
            }
            _repo.EditViewsCount(id);
            return("Successfully upped views count");
        }