public bool InsertKomentarz(KlasaPomocniczaDodajKoment NowyObiekt)
        {
            try
            {

                Post post = (from p in db.Posts
                 where p.id == NowyObiekt.id_posta
                 select p).First();

                Komentarz k = new Komentarz();
                k.id = NowyObiekt.id;
                k.id_posta = NowyObiekt.id_posta;

                k.data_dodania = NowyObiekt.data_dodania;
                k.tresc = NowyObiekt.tresc;
                k.autor = NowyObiekt.autor;
                k.status = 0;
                k.Post = post;

                db.Komentarzs.InsertOnSubmit(k);
                db.SubmitChanges();

                 return true;
            }
            catch (Exception) { return false; }
        }
示例#2
0
        public ActionResult DeleteConfirmed(int id)
        {
            Komentarz komentarz = db.Komentarze.Find(id);

            db.Komentarze.Remove(komentarz);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
        public ActionResult CreateComment(int id)
        {
            var komentarz = new Komentarz {
                PrzepisID = id
            };

            return(View(komentarz));
        }
示例#4
0
        public ActionResult DeleteConfirmed(int id)
        {
            Komentarz komentarz = db.Komentarze.Find(id);

            db.Komentarze.Remove(komentarz);
            db.SaveChanges();

            int idTematu = komentarz.TematID;

            return(RedirectToAction("Temat", idTematu));
        }
示例#5
0
 public ActionResult Edit([Bind(Include = "IdKomentarza,Tresc,DataDodania,Id,IdTematu")] Komentarz komentarz)
 {
     if (ModelState.IsValid)
     {
         db.Entry(komentarz).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.IdTematu = new SelectList(db.Tematy, "IdTematu", "Tytul", komentarz.IdTematu);
     ViewBag.Id       = new SelectList(db.Users, "Id", "Email", komentarz.Id);
     return(View(komentarz));
 }
        public ActionResult AddComment(string comment)
        {
            Komentarz _komentarzMaster = new Komentarz();

            _komentarzMaster.Tresc = comment;
            // _meczEncja.Komentarze.Add(_komentarzMaster);
            db.Komentarze.Add(_komentarzMaster);
            db.SaveChanges();
            // return 1;

            return(Json(new { Success = true }));
        }
示例#7
0
        // GET: Komentarz/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Komentarz komentarz = db.Komentarze.Find(id);

            if (komentarz == null)
            {
                return(HttpNotFound());
            }
            return(View(komentarz));
        }
示例#8
0
        public ActionResult DodajKomentarz(int tematID, string tresc)
        {
            Komentarz komentarz = new Komentarz()
            {
                ProfilID    = db.Profile.Single(p => p.UserName == User.Identity.Name).ID,
                TematID     = db.Tematy.Single(t => t.ID == tematID).ID,
                Tresc       = tresc,
                DataDodania = DateTime.Now
            };

            db.Komentarze.Add(komentarz);
            db.SaveChanges();
            return(RedirectToAction("Temat", new { id = komentarz.TematID }));
        }
示例#9
0
 public ActionResult EditComment(int id)
 {
     using (var db = new DatabaseContext())
     {
         Komentarz comment = new Komentarz();
         comment = db.Komentarz.FirstOrDefault(p => p.Id == id);
         if (comment == null)
         {
             return(View("Error"));
         }
         ViewModels viewModel = new ViewModels();
         viewModel.Comment = comment;
         return(View(viewModel));
     }
 }
示例#10
0
 public ActionResult DeleteComment(int id)
 {
     using (var db = new DatabaseContext())
     {
         Komentarz dbEntry = new Komentarz();
         dbEntry = db.Komentarz.FirstOrDefault(p => p.Id == id);
         if (dbEntry == null)
         {
             return(View("Error"));
         }
         db.Komentarz.Remove(dbEntry);
         db.SaveChanges();
         return(View());
     }
 }
示例#11
0
        public ActionResult Create([Bind(Include = "IdKomentarza,Tresc,IdTematu")] Komentarz komentarz)
        {
            if (ModelState.IsValid)
            {
                komentarz.DataDodania = System.DateTime.Now;
                komentarz.Id          = User.Identity.GetUserId();
                db.Komentarze.Add(komentarz);
                db.SaveChanges();
                return(RedirectToAction("Details", "Temat", new { id = komentarz.IdTematu }));
            }

            ViewBag.IdTekstu = new SelectList(db.Tematy, "IdTematu", "Tytul", komentarz.IdKomentarza);
            ViewBag.Id       = new SelectList(db.Users, "Id", "Email", komentarz.Id);
            return(View(komentarz));
        }
示例#12
0
        }//nie trzeba

        /// <summary>
        /// Zapis do bazy komentarza do przepisu
        /// </summary>
        /// <param name="id_uzytkownika">użytkownik</param>
        /// <param name="id_przepisu">przepis</param>
        /// <param name="komentarz">tekst komentarza</param>
        /// <returns>rezultat sukces lub niepowodzenie</returns>
        public bool NapiszKomentarz(int id_uzytkownika, int id_przepisu, string komentarz)
        {
            try
            {
                Komentarz koment = new Komentarz {
                    UzytkownikID = id_uzytkownika, PrzepisID = id_przepisu, Koment = komentarz
                };
                bazaContext.setKomentarze.Add(koment);
                bazaContext.SaveChanges();
                return(true);
            }
            catch (FaultException e)
            {
                throw new FaultException("Komentowanie tego przepisu nie powidło się.");
            }
        }//done
示例#13
0
        // GET: Komentarz/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Komentarz komentarz = db.Komentarze.Find(id);

            if (komentarz == null)
            {
                return(HttpNotFound());
            }
            ViewBag.IdTematu = new SelectList(db.Tematy, "IdTematu", "Tytul", komentarz.IdTematu);
            ViewBag.Id       = new SelectList(db.Users, "Id", "Email", komentarz.Id);
            return(View(komentarz));
        }
示例#14
0
 public ActionResult EditComment(ViewModels viewModel)
 {
     using (var db = new DatabaseContext())
     {
         Komentarz dbEntry = db.Komentarz.FirstOrDefault(p => p.Id == viewModel.Comment.Id);
         if (ModelState.IsValid)
         {
             dbEntry.Zawartosc = viewModel.Comment.Zawartosc;
             db.SaveChanges();
             return(RedirectToAction("Index"));
         }
         else
         {
             return(View(viewModel));
         }
     }
 }
        public ActionResult Create(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            Komentarz komentarz = db.Komentarze.Find(id);

            ViewBag.Id = id;

            /*
             * ViewBag.IdTekstu = new SelectList(db.Teksty, "IdTekstu", "Tytul");
             * ViewBag.Id = new SelectList(db.Users, "Id", "Email");
             */
            return(View());
        }
        public ActionResult Create([Bind(Include = "IdPodKomentarza,Tresc,IdKomentarza")] PodKomentarz podKomentarz)
        {
            Komentarz komentarz = new Komentarz();

            if (ModelState.IsValid)
            {
                podKomentarz.DataDodania = System.DateTime.Now;
                podKomentarz.Id          = User.Identity.GetUserId();
                db.PodKomentarze.Add(podKomentarz);
                db.SaveChanges();

                return(RedirectToAction("Details", "Temat", new { id = podKomentarz.IdKomentarza }));
            }

            ViewBag.IdKomentarza = new SelectList(db.Komentarze, "IdKomentarza", "Tresc", podKomentarz.IdKomentarza);
            ViewBag.Id           = new SelectList(db.Users, "Id", "Email", podKomentarz.Id);
            return(View(podKomentarz));
        }
        public ActionResult CreateComment(Komentarz komentarz)
        {
            var user = userManager.FindById(User.Identity.GetUserId());

            komentarz.DataDodania  = DateTime.Now;
            komentarz.UzytkownikID = user.Id;

            if (ModelState.IsValid)
            {
                db.Komentarze.Add(komentarz);
                db.SaveChanges();
                return(RedirectToAction("Details", new { id = komentarz.PrzepisID }));
            }
            else
            {
                return(View(komentarz));
            }
        }
        public ActionResult EditCommentConfirmation(Komentarz komentarz)
        {
            var user = userManager.FindById(User.Identity.GetUserId());

            komentarz.DataDodania  = DateTime.Now;
            komentarz.UzytkownikID = user.Id;

            if (ModelState.IsValid)
            {
                db.Entry(komentarz).State = EntityState.Modified;
                db.SaveChanges();
                return(RedirectToAction("Details", new { id = komentarz.PrzepisID }));
            }
            else
            {
                return(View(komentarz));
            }
        }
示例#19
0
 private bool CheckCommentAuthor(int commentId)
 {
     using (var db = new DatabaseContext())
     {
         Komentarz comment = new Komentarz();
         comment = db.Komentarz.FirstOrDefault(p => p.Id == commentId);
         Czlonkowie temp = new Czlonkowie();
         temp = db.Czlonkowie.FirstOrDefault(p => p.Id == comment.IdCzlonka);
         if (temp.IdUzytkownika == userData.Id)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
 }
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Temat     temat     = db.Tematy.Find(id);
            Komentarz komentarz = db.Komentarze.Find(id);

            if (temat == null)
            {
                return(HttpNotFound());
            }
            var model = new MultidateTematKomentarz()
            {
                temat      = temat,
                komentarz1 = komentarz
            };

            model.komentarz = db.Komentarze.ToList();

            return(View(model));
        }
        void ReleaseDesignerOutlets()
        {
            if (AdvancedSearchBox != null)
            {
                AdvancedSearchBox.Dispose();
                AdvancedSearchBox = null;
            }

            if (AngebotNr != null)
            {
                AngebotNr.Dispose();
                AngebotNr = null;
            }

            if (ArchiveButton1 != null)
            {
                ArchiveButton1.Dispose();
                ArchiveButton1 = null;
            }

            if (AufWunsch != null)
            {
                AufWunsch.Dispose();
                AufWunsch = null;
            }

            if (AusstattungDo != null)
            {
                AusstattungDo.Dispose();
                AusstattungDo = null;
            }

            if (AusstattungOd != null)
            {
                AusstattungOd.Dispose();
                AusstattungOd = null;
            }

            if (Bezeichnung != null)
            {
                Bezeichnung.Dispose();
                Bezeichnung = null;
            }

            if (Binderabstand != null)
            {
                Binderabstand.Dispose();
                Binderabstand = null;
            }

            if (Binderabstand2 != null)
            {
                Binderabstand2.Dispose();
                Binderabstand2 = null;
            }

            if (BinderabstandCa != null)
            {
                BinderabstandCa.Dispose();
                BinderabstandCa = null;
            }

            if (Breite != null)
            {
                Breite.Dispose();
                Breite = null;
            }

            if (Breite2 != null)
            {
                Breite2.Dispose();
                Breite2 = null;
            }

            if (BreiteCa != null)
            {
                BreiteCa.Dispose();
                BreiteCa = null;
            }

            if (BreiteN != null)
            {
                BreiteN.Dispose();
                BreiteN = null;
            }

            if (Cena1 != null)
            {
                Cena1.Dispose();
                Cena1 = null;
            }

            if (CenaMontaz != null)
            {
                CenaMontaz.Dispose();
                CenaMontaz = null;
            }

            if (ComboBox1 != null)
            {
                ComboBox1.Dispose();
                ComboBox1 = null;
            }

            if (ComboBox2 != null)
            {
                ComboBox2.Dispose();
                ComboBox2 = null;
            }

            if (ComboBox5 != null)
            {
                ComboBox5.Dispose();
                ComboBox5 = null;
            }

            if (ComboBoxRaport != null)
            {
                ComboBoxRaport.Dispose();
                ComboBoxRaport = null;
            }

            if (Dach != null)
            {
                Dach.Dispose();
                Dach = null;
            }

            if (Data != null)
            {
                Data.Dispose();
                Data = null;
            }

            if (DataOferty != null)
            {
                DataOferty.Dispose();
                DataOferty = null;
            }

            if (DataPotwierdzenia != null)
            {
                DataPotwierdzenia.Dispose();
                DataPotwierdzenia = null;
            }

            if (DeleteButton0 != null)
            {
                DeleteButton0.Dispose();
                DeleteButton0 = null;
            }

            if (DeleteButton1 != null)
            {
                DeleteButton1.Dispose();
                DeleteButton1 = null;
            }

            if (DeleteButton2 != null)
            {
                DeleteButton2.Dispose();
                DeleteButton2 = null;
            }

            if (DeleteButton3 != null)
            {
                DeleteButton3.Dispose();
                DeleteButton3 = null;
            }

            if (DeleteButton5 != null)
            {
                DeleteButton5.Dispose();
                DeleteButton5 = null;
            }

            if (Down1 != null)
            {
                Down1.Dispose();
                Down1 = null;
            }

            if (Down2 != null)
            {
                Down2.Dispose();
                Down2 = null;
            }

            if (Down3 != null)
            {
                Down3.Dispose();
                Down3 = null;
            }

            if (Firma != null)
            {
                Firma.Dispose();
                Firma = null;
            }

            if (Firsthohe != null)
            {
                Firsthohe.Dispose();
                Firsthohe = null;
            }

            if (Firsthohe2 != null)
            {
                Firsthohe2.Dispose();
                Firsthohe2 = null;
            }

            if (FirsthoheCa != null)
            {
                FirsthoheCa.Dispose();
                FirsthoheCa = null;
            }

            if (FirsthoheN != null)
            {
                FirsthoheN.Dispose();
                FirsthoheN = null;
            }

            if (Gesamtpreis != null)
            {
                Gesamtpreis.Dispose();
                Gesamtpreis = null;
            }

            if (Gewicht != null)
            {
                Gewicht.Dispose();
                Gewicht = null;
            }

            if (Gewicht2 != null)
            {
                Gewicht2.Dispose();
                Gewicht2 = null;
            }

            if (Hauptprofil1 != null)
            {
                Hauptprofil1.Dispose();
                Hauptprofil1 = null;
            }

            if (Hauptprofil2 != null)
            {
                Hauptprofil2.Dispose();
                Hauptprofil2 = null;
            }

            if (Hauptprofil3 != null)
            {
                Hauptprofil3.Dispose();
                Hauptprofil3 = null;
            }

            if (HauptProfilGewicht != null)
            {
                HauptProfilGewicht.Dispose();
                HauptProfilGewicht = null;
            }

            if (Ilosc1 != null)
            {
                Ilosc1.Dispose();
                Ilosc1 = null;
            }

            if (InfoLabel1 != null)
            {
                InfoLabel1.Dispose();
                InfoLabel1 = null;
            }

            if (Kedernut != null)
            {
                Kedernut.Dispose();
                Kedernut = null;
            }

            if (Komentarz != null)
            {
                Komentarz.Dispose();
                Komentarz = null;
            }

            if (KWert1 != null)
            {
                KWert1.Dispose();
                KWert1 = null;
            }

            if (LabelTest1 != null)
            {
                LabelTest1.Dispose();
                LabelTest1 = null;
            }

            if (LabelTest2 != null)
            {
                LabelTest2.Dispose();
                LabelTest2 = null;
            }

            if (Lange2 != null)
            {
                Lange2.Dispose();
                Lange2 = null;
            }

            if (Lange3 != null)
            {
                Lange3.Dispose();
                Lange3 = null;
            }

            if (LangeCa != null)
            {
                LangeCa.Dispose();
                LangeCa = null;
            }

            if (LangeN != null)
            {
                LangeN.Dispose();
                LangeN = null;
            }

            if (Leichbauhalle != null)
            {
                Leichbauhalle.Dispose();
                Leichbauhalle = null;
            }

            if (Liefertermin != null)
            {
                Liefertermin.Dispose();
                Liefertermin = null;
            }

            if (Lieferungskosten != null)
            {
                Lieferungskosten.Dispose();
                Lieferungskosten = null;
            }

            if (Lieferzeit != null)
            {
                Lieferzeit.Dispose();
                Lieferzeit = null;
            }

            if (ListaOferty != null)
            {
                ListaOferty.Dispose();
                ListaOferty = null;
            }

            if (Mail != null)
            {
                Mail.Dispose();
                Mail = null;
            }

            if (Mail_cena != null)
            {
                Mail_cena.Dispose();
                Mail_cena = null;
            }

            if (Mail_miasto != null)
            {
                Mail_miasto.Dispose();
                Mail_miasto = null;
            }

            if (Mail_mm != null)
            {
                Mail_mm.Dispose();
                Mail_mm = null;
            }

            if (MontageAGB != null)
            {
                MontageAGB.Dispose();
                MontageAGB = null;
            }

            if (MontageBox != null)
            {
                MontageBox.Dispose();
                MontageBox = null;
            }

            if (MontageSwitch != null)
            {
                MontageSwitch.Dispose();
                MontageSwitch = null;
            }

            if (Name != null)
            {
                Name.Dispose();
                Name = null;
            }

            if (NHN != null)
            {
                NHN.Dispose();
                NHN = null;
            }

            if (NrPotwierdzenia != null)
            {
                NrPotwierdzenia.Dispose();
                NrPotwierdzenia = null;
            }

            if (OpenButton1 != null)
            {
                OpenButton1.Dispose();
                OpenButton1 = null;
            }

            if (Plec != null)
            {
                Plec.Dispose();
                Plec = null;
            }

            if (Postlietzahl != null)
            {
                Postlietzahl.Dispose();
                Postlietzahl = null;
            }

            if (PriceText1 != null)
            {
                PriceText1.Dispose();
                PriceText1 = null;
            }

            if (PriceText2 != null)
            {
                PriceText2.Dispose();
                PriceText2 = null;
            }

            if (RaportType != null)
            {
                RaportType.Dispose();
                RaportType = null;
            }

            if (ReadyButton1 != null)
            {
                ReadyButton1.Dispose();
                ReadyButton1 = null;
            }

            if (SaveButton1 != null)
            {
                SaveButton1.Dispose();
                SaveButton1 = null;
            }

            if (Schneelast != null)
            {
                Schneelast.Dispose();
                Schneelast = null;
            }

            if (Schneelast2 != null)
            {
                Schneelast2.Dispose();
                Schneelast2 = null;
            }

            if (SearchCheckBox != null)
            {
                SearchCheckBox.Dispose();
                SearchCheckBox = null;
            }

            if (SearchDlugosc != null)
            {
                SearchDlugosc.Dispose();
                SearchDlugosc = null;
            }

            if (SearchSchneelast != null)
            {
                SearchSchneelast.Dispose();
                SearchSchneelast = null;
            }

            if (SearchSzerokosc != null)
            {
                SearchSzerokosc.Dispose();
                SearchSzerokosc = null;
            }

            if (SearchText != null)
            {
                SearchText.Dispose();
                SearchText = null;
            }

            if (SearchTextField != null)
            {
                SearchTextField.Dispose();
                SearchTextField = null;
            }

            if (SearchTypHali != null)
            {
                SearchTypHali.Dispose();
                SearchTypHali = null;
            }

            if (SearchWindlast != null)
            {
                SearchWindlast.Dispose();
                SearchWindlast = null;
            }

            if (SearchWysokosc != null)
            {
                SearchWysokosc.Dispose();
                SearchWysokosc = null;
            }

            if (Select2 != null)
            {
                Select2.Dispose();
                Select2 = null;
            }

            if (Stadt != null)
            {
                Stadt.Dispose();
                Stadt = null;
            }

            if (Stallhalle != null)
            {
                Stallhalle.Dispose();
                Stallhalle = null;
            }

            if (Starke1 != null)
            {
                Starke1.Dispose();
                Starke1 = null;
            }

            if (Starke2 != null)
            {
                Starke2.Dispose();
                Starke2 = null;
            }

            if (StraBe != null)
            {
                StraBe.Dispose();
                StraBe = null;
            }

            if (Suma1 != null)
            {
                Suma1.Dispose();
                Suma1 = null;
            }

            if (Switch3 != null)
            {
                Switch3.Dispose();
                Switch3 = null;
            }

            if (SwitchTab1 != null)
            {
                SwitchTab1.Dispose();
                SwitchTab1 = null;
            }

            if (Tab0 != null)
            {
                Tab0.Dispose();
                Tab0 = null;
            }

            if (Tab1 != null)
            {
                Tab1.Dispose();
                Tab1 = null;
            }

            if (Tab2 != null)
            {
                Tab2.Dispose();
                Tab2 = null;
            }

            if (Tab3 != null)
            {
                Tab3.Dispose();
                Tab3 = null;
            }

            if (Tab4 != null)
            {
                Tab4.Dispose();
                Tab4 = null;
            }

            if (Tab5 != null)
            {
                Tab5.Dispose();
                Tab5 = null;
            }

            if (Tab6 != null)
            {
                Tab6.Dispose();
                Tab6 = null;
            }

            if (Tab7 != null)
            {
                Tab7.Dispose();
                Tab7 = null;
            }

            if (Tabela1 != null)
            {
                Tabela1.Dispose();
                Tabela1 = null;
            }

            if (Tabela2 != null)
            {
                Tabela2.Dispose();
                Tabela2 = null;
            }

            if (Tabela3 != null)
            {
                Tabela3.Dispose();
                Tabela3 = null;
            }

            if (Tabela5 != null)
            {
                Tabela5.Dispose();
                Tabela5 = null;
            }

            if (TabNavi != null)
            {
                TabNavi.Dispose();
                TabNavi = null;
            }

            if (TechnischeDaten != null)
            {
                TechnischeDaten.Dispose();
                TechnischeDaten = null;
            }

            if (Telefonnummer != null)
            {
                Telefonnummer.Dispose();
                Telefonnummer = null;
            }

            if (ToreUndTuren != null)
            {
                ToreUndTuren.Dispose();
                ToreUndTuren = null;
            }

            if (Traufhohe != null)
            {
                Traufhohe.Dispose();
                Traufhohe = null;
            }

            if (Traufhohe2 != null)
            {
                Traufhohe2.Dispose();
                Traufhohe2 = null;
            }

            if (TraufhoheCa != null)
            {
                TraufhoheCa.Dispose();
                TraufhoheCa = null;
            }

            if (TraufhoheN != null)
            {
                TraufhoheN.Dispose();
                TraufhoheN = null;
            }

            if (Unterlagen != null)
            {
                Unterlagen.Dispose();
                Unterlagen = null;
            }

            if (UnterlagenBox != null)
            {
                UnterlagenBox.Dispose();
                UnterlagenBox = null;
            }

            if (UnterlagenSwitch != null)
            {
                UnterlagenSwitch.Dispose();
                UnterlagenSwitch = null;
            }

            if (Up1 != null)
            {
                Up1.Dispose();
                Up1 = null;
            }

            if (Up2 != null)
            {
                Up2.Dispose();
                Up2 = null;
            }

            if (Up3 != null)
            {
                Up3.Dispose();
                Up3 = null;
            }

            if (UWert1 != null)
            {
                UWert1.Dispose();
                UWert1 = null;
            }

            if (UWert2 != null)
            {
                UWert2.Dispose();
                UWert2 = null;
            }

            if (Vat2 != null)
            {
                Vat2.Dispose();
                Vat2 = null;
            }

            if (Vorname != null)
            {
                Vorname.Dispose();
                Vorname = null;
            }

            if (Windlast != null)
            {
                Windlast.Dispose();
                Windlast = null;
            }

            if (Windlast2 != null)
            {
                Windlast2.Dispose();
                Windlast2 = null;
            }

            if (WypChange1 != null)
            {
                WypChange1.Dispose();
                WypChange1 = null;
            }

            if (WypChange2 != null)
            {
                WypChange2.Dispose();
                WypChange2 = null;
            }

            if (WypChange3 != null)
            {
                WypChange3.Dispose();
                WypChange3 = null;
            }

            if (X1 != null)
            {
                X1.Dispose();
                X1 = null;
            }

            if (Y1 != null)
            {
                Y1.Dispose();
                Y1 = null;
            }

            if (Zugbandhohe != null)
            {
                Zugbandhohe.Dispose();
                Zugbandhohe = null;
            }

            if (Zugbandhohe2 != null)
            {
                Zugbandhohe2.Dispose();
                Zugbandhohe2 = null;
            }

            if (ZugbandhoheCa != null)
            {
                ZugbandhoheCa.Dispose();
                ZugbandhoheCa = null;
            }

            if (SearchList != null)
            {
                SearchList.Dispose();
                SearchList = null;
            }

            if (SearchEmail != null)
            {
                SearchEmail.Dispose();
                SearchEmail = null;
            }
        }