コード例 #1
0
        public bool IsShared(int id, int userId)
        {
            if (!UserOwnsOrShares(id, userId))
            {
                throw new ValidationException("Unauthorized");
            }

            return(_listsRepository.IsShared(id));
        }