Exemplo n.º 1
0
        public int addDistrictsTest(
            [PexAssumeUnderTest] BusinessPlayer target,
            string district,
            string province
            )
        {
            int result = target.addDistricts(district, province);

            return(result);
            // TODO: add assertions to method BusinessPlayerTest.addDistrictsTest(BusinessPlayer, String, String)
        }
Exemplo n.º 2
0
        private void simpleButton5_Click(object sender, EventArgs e)
        {
            if (district.Text.Equals("") || province.Text.Equals(""))
            {
                MessageBox.Show("Vui lòng điền quận (huyện) và thành phố (tỉnh) cần thêm!");
                return;
            }

            if (business.addDistricts(district.Text, province.Text) > 0)
            {
                MessageBox.Show("Thêm thành công!");
                loadDataDistrict();
            }
            else
            {
                MessageBox.Show("Đã tồn tại!");
            }
        }