public CurrentIllnesSympt()
        {
            this.InitializeComponent();

            this.navigationHelper            = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            SympIllnes.Text = "Симптоми на " + CurrentIllness.GetIllness().illness_name;

            SymptomList.DataContext = db.getAllSymptoms(CurrentIllness.GetIllness().illness_name);
        }