private void btnDelete_Click(object sender, EventArgs e)
 {
     subscriberBLL.Delete(int.Parse(txtMemberID.Text));
     MessageBox.Show("The subscriber is deleted successfully!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Information);
 }