public void PostStatus(string i_TextToPost)
        {
            if (m_TimelinePosts == null)
            {
                m_TimelinePosts = new TimelinePosts(m_LoggedInUser);
            }

            m_TimelinePosts.MakeNewPost(i_TextToPost);
        }
        public List <Post> GetAllUserPosts()
        {
            if (m_TimelinePosts == null)
            {
                m_TimelinePosts = new TimelinePosts(m_LoggedInUser);
            }

            return(m_TimelinePosts.GetAllUserPosts());
        }