Blog.Services.Implementation.CommentsService.GetByUser C# (CSharp) Method

GetByUser() public method

public GetByUser ( int id ) : List
id int
return List
        public List<Comment> GetByUser(int id)
        {
            return _commentsLogic.GetByUser(id);
        }