public bool CreateBookStore(BookStore bookstore)
        {
            try
            {
                string cs = CocBook.Properties.Settings.Default.connectionString;
                SqlConnection con = new SqlConnection(cs);
                SqlCommand cmd = new SqlCommand("INSERT INTO BookStore VALUES (@ISBN, @Quantity)", con);

                cmd.Parameters.AddWithValue("ISBN", bookstore.ISBN);
                cmd.Parameters.AddWithValue("Quantity", bookstore.Quantity);

                con.Open();
                int count = cmd.ExecuteNonQuery();
                con.Close();
                return (count == 1);
            }
            catch (Exception)
            {

                return false;
            }
        }
        private bool UpdateStore(bool IsChangeQuantity)
        {
            try
            {
                bool rs = true;

                string error = "";

                BookStore bookStore = new BookStore();
                BookStoreDAL bookStoreDAL = new BookStoreDAL();
                string ISBN = ieDetail.ISBNBook;
                int Quantity = ieDetail.Quantity;
                bookStore = bookStoreDAL.GetBookStorebyISBNBook(ISBN);
                if (bookStore == null)
                {
                    if (String.Compare(importExport.ImEx, "Nhập", true) == 0)
                    {
                        BookStore bookStore1 = new BookStore();
                        bookStore1.ISBN = ISBN;
                        bookStore1.Quantity = Quantity;
                        rs = bookStoreDAL.CreateBookStore(bookStore1);
                        if (!rs)
                        {
                            error = "Không thể thêm sách vào kho.";
                        }
                    }
                    else
                    {
                        rs = false;
                        error = "Không thể xuất sách không có trong kho";
                    }
                }
                else
                {
                    if (String.Compare(importExport.ImEx, "Nhập", true) == 0)
                    {
                        if (IsChangeQuantity)
                        {
                            bookStore.Quantity += Quantity;
                        }
                        else
                        {
                            bookStore.Quantity = Quantity;
                        }
                    }
                    else
                    {
                        if (bookStore.Quantity >= Quantity)
                        {
                            if (IsChangeQuantity)
                            {
                                bookStore.Quantity -= Quantity;
                            }
                            else
                            {
                                bookStore.Quantity = Quantity;
                            }
                        }
                        else
                        {
                            rs = false;
                            error = "Số lượng sách lớn hơn số lượng có trong kho";
                        }
                    }
                    if (rs)
                    {
                        rs = bookStoreDAL.UpdateBookStore(bookStore);
                    }
                    if (!rs)
                    {
                        error = "Không thể cập nhật sách.";
                    }
                }

                if (!rs)
                {
                    MessageBox.Show(error + ". Vui lòng xem lại !");
                }
                return rs;
            }
            catch (Exception ex)
            {
                logger.MyLogFile(DateTime.Now.ToString(), "' Error '" + ex.Message + "'");
                return false;
            }
        }
        private void btnDelete_Click(object sender, EventArgs e)
        {
            try
            {
                if (MessageBox.Show("Bạn có muốn xóa ?", "Xác nhận", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    //Restore book's quantity in Store when Delete Row
                    BookStore bookStore = new BookStore();
                    BookStoreDAL bookStoreDAL = new BookStoreDAL();
                    string ISBN = ieDetail.ISBNBook;
                    int Quantity = ieDetail.Quantity;
                    bookStore = bookStoreDAL.GetBookStorebyISBNBook(ISBN);
                    string error = "";
                    bool rs = true;
                    if (String.Compare(importExport.ImEx, "Xuất", true) == 0)
                    {
                        bookStore.Quantity += Quantity;
                    }
                    else
                    {
                        if (bookStore.Quantity >= Quantity)
                        {
                            bookStore.Quantity -= Quantity;
                        }
                        else
                        {
                            rs = false;
                            error = error + "Số lượng sách nhỏ hơn số sách cần xóa từ phiếu Nhập này";
                        }
                    }

                    rs = bookStoreDAL.UpdateBookStore(bookStore);
                    if (!rs)
                    {
                        error = error + "Không thể cập nhật sách.";
                        MessageBox.Show(error);
                    }
                    else
                    {
                        // Delete Book in IEDetail
                        ieDAL.DeleteOrderByCheckNoAndISBN(importExport.CheckNo, ieDetail.ISBNBook);
                    }

                }
                ClearAll();
                OrderLoadData();
            }
            catch (Exception ex)
            {

                logger.MyLogFile(DateTime.Now.ToString(), "' Error '" + ex.Message + "'");
            }
        }
        //View in BillDetail
        public BookStore GetBookStorebyISBNBook(string ISBNBookStore)
        {
            string cs = CocBook.Properties.Settings.Default.connectionString;
            SqlConnection con = new SqlConnection(cs);

            SqlCommand cmd = new SqlCommand("Select * from BookStore where ISBN = @ISBN", con);
            cmd.Parameters.AddWithValue("ISBN", ISBNBookStore);
            con.Open();
            SqlDataReader sdr = cmd.ExecuteReader();
            BookStore bookStore = new BookStore();

            if (sdr.HasRows)
            {
                sdr.Read();
                bookStore.ISBN = (string)sdr["ISBN"];
                bookStore.Quantity = (int)sdr["Quantity"];
                return bookStore;
            }
            con.Close();
            return null;
        }