static public ChatFragment OpenChat(ChadderContact contact) { var result = new ChatFragment(); result.Arguments = new Bundle(); result.Arguments.PutString(EXTRA_CONTACT_ID, contact.UserId); return(result); }
static public ChatFragment OpenChat(ChadderConversation conversation) { var result = new ChatFragment(); result.Arguments = new Bundle(); result.Arguments.PutInt(EXTRA_CONVERSATION_ID, conversation.recordId); return(result); }