示例#1
0
        public bool CheckUserLike(string userName, int postId)
        {
            bool result = _likesRepository.CheckLikes(userName, postId);

            return(result);
        }