Blog.Services.Implementation.PostLikesService.Get C# (CSharp) 메소드

Get() 공개 메소드

public Get ( int postId ) : List
postId int
리턴 List
        public List<PostLike> Get(int postId)
        {
            return _postLikesLogic.Get(postId);
        }