public static List <User> get_comment_fans(Guid applicationId,
                                            Guid commentId, bool?likeStatus, int?count, long?lowerBoundary, ref long totalCount)
 {
     return(UsersController.get_users(applicationId, SharingController.get_comment_fan_ids(applicationId,
                                                                                           commentId, likeStatus, count, lowerBoundary, ref totalCount)));
 }
        public static List <Guid> get_comment_fan_ids(Guid applicationId, Guid commentId)
        {
            long totalCount = 0;

            return(SharingController.get_comment_fan_ids(applicationId, commentId, true, null, null, ref totalCount));
        }