public void hastaBilgiDoldur()
        {
            lblHastaAd.Text    = ": " + hasta.FirstName;
            lblHastaSoyad.Text = ": " + hasta.LastName;
            lblHastaMail.Text  = ": " + hasta.Email;
            lblHastaTc.Text    = ": " + hasta.NationalIdentity;
            lblHastaTel.Text   = ": " + hasta.PhoneNumber;

            int hastaId = userManager.GetAll().SingleOrDefault(p => p.NationalIdentity == hasta.NationalIdentity).Id;

            string bosluk = "\n-----------------------------------------------------------------------------------\n";

            hastaDetay = patientManager.Get(new Patient {
                Id = hastaId
            });
            rchHastaSikayet.Text = hastaDetay.PatientDescription;
            cmbDiyetTuru.Text    = dietManager.Get(new Diet {
                DietId = hastaDetay.DietId
            }).DietName;
            hastaDietDetay = dietCalendarManager.Get(new DietCalendar {
                DietId = hastaDetay.DietId
            });
            rchDiyet.Text = hastaDietDetay.Pazartesi + bosluk + hastaDietDetay.Sali + bosluk + hastaDietDetay.Carsamba +
                            bosluk + hastaDietDetay.Persembe + bosluk + hastaDietDetay.Cuma + bosluk +
                            hastaDietDetay.Cumartesi + bosluk + hastaDietDetay.Pazar;
        }