示例#1
0
        private void button5_Click(object sender, EventArgs e)
        {
            if (StaticClass.cashierId == txtEmpID.Text)
            {
                Alert.Show("Bạn đang đăng nhập\n vào tài khoản này !", Color.Red);
                return;
            }
            DataTable ExistEmployee = get_service.GetEmployeeInInvoiceTotal(txtEmpID.Text);

            if (ExistEmployee.Rows.Count > 0)
            {
                DialogResult t =
                    MessBox2Choice.ShowBox("Nhân viên mà bạn xóa \nHiện không xóa được.\n Bạn có muốn xóa không", Color.YellowGreen);
                if (t.Equals(System.Windows.Forms.DialogResult.No))
                {
                    return;
                }
            }
            get_service.DeleteEmployee(txtEmpID.Text, StaticClass.storeId);
            Employees = get_service.GetAllEmployee(StaticClass.storeId);
            limit     = Employees.Rows.Count - 1;
            button8_Click(button8, null);
        }