public bool PostHappyBirthday(User i_UserToTag, User i_PostedUser = null)
        {
            User user;

            if (i_PostedUser == null)
            {
                user = m_ConnectionService.loggedInUser;
            }
            else
            {
                user = i_PostedUser;
            }
            return(PostCreator.CreateHappyBirthdayPost(user, i_UserToTag));
        }
        public bool PostStatus(string i_TextToPost, User i_PostedUser = null)
        {
            User user;

            if (i_PostedUser == null)
            {
                user = m_ConnectionService.loggedInUser;
            }
            else
            {
                user = i_PostedUser;
            }

            return(PostCreator.PostStatus(user, i_TextToPost));
        }