Beispiel #1
0
        public int delProductTest([PexAssumeUnderTest] BusinessPlayer target, string id)
        {
            int result = target.delProduct(id);

            return(result);
            // TODO: add assertions to method BusinessPlayerTest.delProductTest(BusinessPlayer, String)
        }
Beispiel #2
0
        private void delete_Click(object sender, EventArgs e)
        {
            if (grid.SelectedRowsCount < 0)
            {
                MessageBox.Show("Vui lòng chọn sản phẩm cần xoá!");
                return;
            }

            DataRow row = grid.GetDataRow(grid.GetSelectedRows()[0]);

            if (DialogResult.Yes == MessageBox.Show("Bạn chắc sẽ xoá '" + row["name"].ToString() + "'!?", "Chắc chứ?", MessageBoxButtons.YesNoCancel))
            {
                int num = business.delProduct(row["id"].ToString());
                if (num > 0)
                {
                    MessageBox.Show("Xoá thành công '" + row["name"].ToString() + "'!");
                    loadData();
                }
                else
                {
                    MessageBox.Show("Xoá thất bại!");
                }
            }
        }