private bool DeleteCategory()
        {
            using (MyLibraryEntities db = new MyLibraryEntities())
            {
                string       nameCategory = db.Catagories.Where(x => x.Id == SelectedRowId).FirstOrDefault().CTName.ToString();
                string       Dialog       = "Seçilmiş " + nameCategory + " Kateqoriyanı silmək istəyirsiniz?";
                DialogResult result       = MessageBox.Show(Dialog, "Silmək Sorğusu!", MessageBoxButtons.YesNo);

                if (DialogResult.Yes != result)
                {
                    MessageBox.Show("Seçilmiş " + nameCategory + " Kateqoriyansı Silinmədi.", "Silmək Sorğusuna cavab");
                    return(false);
                }
                else
                {
                    Catagory catagory = db.Catagories.Where(i => i.Id == SelectedRowId).FirstOrDefault();
                    db.Catagories.Remove(catagory);
                    return(GoChek.isDeleted(db.SaveChanges()));
                }
            }
        }
        private bool DeleteAuhor()
        {
            using (MyLibraryEntities db = new MyLibraryEntities())
            {
                string       nameAuthor = db.Authors.Where(x => x.Id == SelectedRowId).FirstOrDefault().AUTName.ToString();
                string       Dialog     = "Seçilmiş " + nameAuthor + " Müəllifi silmək istəyirsiniz?";
                DialogResult result     = MessageBox.Show(Dialog, "Silmək Sorğusu!", MessageBoxButtons.YesNo);

                if (DialogResult.Yes != result)
                {
                    MessageBox.Show("Seçilmiş " + nameAuthor + " Müəllifi Silinmədi.", "Silmək Sorğusuna cavab");
                    return(false);
                }
                else
                {
                    Author author = db.Authors.Where(i => i.Id == SelectedRowId).FirstOrDefault();
                    db.Authors.Remove(author);
                    return(GoChek.isDeleted(db.SaveChanges()));
                }
            }
        }
        private bool DeleteBooks()
        {
            using (MyLibraryEntities db = new MyLibraryEntities())
            {
                string       namebook = db.Books.Where(x => x.Id == SelectedRowId).FirstOrDefault().BKName.ToString();
                string       Dialog   = "Seçilmiş " + namebook + " Kitabı silmək istəyirsiniz?";
                DialogResult result   = MessageBox.Show(Dialog, "Silmək Sorğusu!", MessageBoxButtons.YesNo);

                if (DialogResult.Yes != result)
                {
                    MessageBox.Show("Seçilmiş " + namebook + " Kitabı Silinmədi.", "Silmək Sorğusuna cavab");
                    return(false);
                }
                else
                {
                    Book        books       = db.Books.Where(i => i.Id == SelectedRowId).FirstOrDefault();
                    AuthorsBook authorsBook = db.AuthorsBooks.Where(x => x.BookId == db.Books.Where(bx => bx.Id == SelectedRowId).FirstOrDefault().Id).FirstOrDefault();
                    db.AuthorsBooks.Remove(authorsBook);
                    db.Books.Remove(books);
                    return(GoChek.isDeleted(db.SaveChanges()));
                }
            }
        }