private void BtnCompanyDescriptionAdd_Click(object sender, RoutedEventArgs e)
        {
            if (richCompany.Document.Blocks.ToString() != "")
            {
                string companyDescription = new TextRange(richCompany.Document.ContentStart, richCompany.Document.ContentEnd).Text.Trim();

                bool success = services.AddCompanyDescription(Feedbackid, companyDescription);
                if (success == true)
                {
                    MessageBox.Show("Açıklama başarılı bir şekilde kaydedildi!");
                }
                else
                {
                    MessageBox.Show("Açıklama kaydı başarısız!");
                }
            }
            else
            {
            }
        }