private void btnNewContact_Click(object sender, EventArgs e)
        {
            NewContactForm newContact = new NewContactForm(ref graphClient, ref applogger, ref sdklogger);

            newContact.Owner = this;
            newContact.ShowDialog(this);
        }
Ejemplo n.º 2
0
 private void btnNewContact_Click(object sender, EventArgs e)
 {
     NewContactForm newContact = new NewContactForm(ref graphClient, ref applogger, ref sdklogger);
     newContact.Owner = this;
     newContact.ShowDialog(this);
 }