Esempio n. 1
0
        public int CountReportedLinksForUser(long userId, int threshold)
        {
            if (!UserDao.Exists(userId))
            {
                throw new InstanceNotFoundException <UserProfileDetails>("userId", userId);
            }

            return(LinkDao.CountForUserReported(userId, threshold));
        }