Ejemplo n.º 1
0
        internal void LoadAllChat()
        {
            ChatBoxView.ViewAllChatPageConnectionString = LoginSignupView.LoginSingupConnectionString;

            ChatBoxPresenter presenter = new ChatBoxPresenter(ChatBoxView);

            presenter.LoadAllChats();
        }
Ejemplo n.º 2
0
        internal void SubmitChat()
        {
            ChatBoxView.accountID = LoginSignupView.LoginSingupAccountID;
            ChatBoxView.ViewAllChatPageConnectionString = LoginSignupView.LoginSingupConnectionString;
            ChatBoxPresenter presenter = new ChatBoxPresenter(ChatBoxView);

            presenter.SubmitChat();
        }