internal void leggTilAnnetTilvalg(Kontroller.Forslag.CorianForslagKontroll corianForslagKontroll)
        {
            TilvalgVindu tilvalgVindu = new TilvalgVindu(db, ForslagSomVises, Modell.Produkt.DelingType.Corian);

            tilvalgVindu.Owner = Hjelpeklasser.VisualTree.getWindowFromParent(corianForslagKontroll);
            tilvalgVindu.ShowDialog();


            if (tilvalgVindu == null || tilvalgVindu.TilvalgSomEndres == null || tilvalgVindu.DialogResult != true)
            {
                return;
            }

            if (!ForslagSomVises.Produkter.Contains(tilvalgVindu.TilvalgSomEndres))
            {
                ForslagSomVises.Add(tilvalgVindu.TilvalgSomEndres);
            }
        }
        internal void leggTilKummer(Kontroller.Forslag.CorianForslagKontroll corianForslagKontroll)
        {
            CorianplateVindu3 corianVindu = new CorianplateVindu3(db, Modell.Produkt.DelingType.CorianKum, Modell.Produkt.DelingType.CorianKumHeltreKum, false, HuskFarge);

            corianVindu.Title = "Legg til kummer";
            corianVindu.Owner = Hjelpeklasser.VisualTree.getWindowFromParent(corianForslagKontroll);
            corianVindu.ShowDialog();


            if (corianVindu == null || corianVindu.Produkt == null || corianVindu.DialogResult != true)
            {
                return;
            }

            if (!ForslagSomVises.Produkter.Contains(corianVindu.Produkt))
            {
                ForslagSomVises.Add(corianVindu.Produkt);
            }
        }