public Conversation(ManagerVazoo managerVazoo, Models.Messages messages, InitMesage initMesage, string mesageID = null)
 {
     conversationMV            = new ConversationAndPurchasesMV(managerVazoo, initMesage, messages, mesageID);
     conversationMV.Navigation = Navigation;
     InitializeComponent();
     BindingContext = conversationMV;
 }
Example #2
0
 public PageForeBay(string eBayUrl, string subject, ManagerVazoo managerVazoo, string messageID)
 {
     conversationAndPurchasesMV = new ConversationAndPurchasesMV(managerVazoo, null, null, messageID, true);
     this.eBayUrl = eBayUrl;
     InitializeComponent();
     subj.Text      = subject;
     BindingContext = conversationAndPurchasesMV;
 }
Example #3
0
 public Purchases1(ConversationAndPurchasesMV conversationAndPurchasesMV)
 {
     this.conversationAndPurchasesMV = conversationAndPurchasesMV;
     InitializeComponent();
     BindingContext = conversationAndPurchasesMV;
 }
Example #4
0
 public ConnfirmDelited(ConversationAndPurchasesMV conversationAndPurchasesMV)
 {
     this.conversationAndPurchasesMV = conversationAndPurchasesMV;
     InitializeComponent();
 }
 public MessageSettings(ConversationAndPurchasesMV conversationAndPurchasesMV)
 {
     this.conversationAndPurchasesMV = conversationAndPurchasesMV;
     InitializeComponent();
     BindingContext = this.conversationAndPurchasesMV;
 }