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

            return(SharingController.get_post_fan_ids(applicationId, postId, true, null, null, ref totalCount));
        }