Exemplo n.º 1
0
        private void Admin_CountryAdd_Click(object sender, RoutedEventArgs e)
        {
            DialogBox d = new DialogBox();

            d.ShowDialog();
            if (d.okClick == false)
            {
                return;
            }
            Service.InsertCountry(d.result, username, password);
        }