Beispiel #1
0
        public int delDistrictsTest([PexAssumeUnderTest] BusinessPlayer target, string data)
        {
            int result = target.delDistricts(data);

            return(result);
            // TODO: add assertions to method BusinessPlayerTest.delDistrictsTest(BusinessPlayer, String)
        }
Beispiel #2
0
        private void simpleButton10_Click(object sender, EventArgs e)
        {
            if (district.Text.Equals(""))
            {
                MessageBox.Show("Vui lòng chọn quận (huyện) cần xoá!");
                return;
            }

            if (MessageBox.Show("Bạn muốn xoá?", "Bạn chắc chứ?", MessageBoxButtons.YesNo) == DialogResult.No)
            {
                return;
            }

            if (business.delDistricts(district.Text) > 0)
            {
                MessageBox.Show("Xoá thành công!");
                district.Text = "";
                loadDataDistrict();
            }
            else
            {
                MessageBox.Show("Không tồn tại!");
            }
        }