private void Button_Inserir(object sender, RoutedEventArgs e)
        {
            ModJogo   x  = new ModJogo();
            NegEquipe eq = new NegEquipe();


            x.Gol1  = int.Parse(gol1txt.Text);
            x.Gol2  = int.Parse(gol2txt.Text);
            x.Local = localtxt.Text;

            NegPartidas y = new NegPartidas();

            y.InsertPartida(x);

            id1txt.Text   = "";
            id2txt.Text   = "";
            gol1txt.Text  = "";
            gol2txt.Text  = "";
            localtxt.Text = "";
        }