Exemplo n.º 1
0
        public bool CanShareWithUser(int shareWithId, int userId)
        {
            if (shareWithId == userId)
            {
                return(false);
            }

            return(_listsRepository.CanShareWithUser(shareWithId, userId));
        }