public static void ADDdonor(Donor d) { Dataclass.Don.Add(d); }
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text.Length < 5) { MessageBox.Show("Enter your name having length greater than 5"); } else if (textBox2.Text.Length < 11 && textBox2.Text.Length > 11) { MessageBox.Show("Enter your valid contact number"); } else if (!textBox3.Text.Contains("@gmail.com")) { MessageBox.Show("Enter your valid Email Adress"); } else if (textBox4.Text.Length < 13 && textBox4.Text.Length > 13) { MessageBox.Show("Enter your valid CNIC number"); } else if (textBox6.Text != "Male" && textBox6.Text != "Female") { MessageBox.Show("Enter A valid Gender"); } else if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "" || textBox4.Text == "" || textBox5.Text == "" || textBox6.Text == "" || textBox7.Text == "" || textBox8.Text == "") { MessageBox.Show("please fill All the feilds"); } else if (!checkBox1.Checked && !checkBox2.Checked && !checkBox3.Checked && !checkBox4.Checked) { MessageBox.Show("Select atleast one catagory for donation"); } else { Donor d = new Donor(); d.Name = textBox1.Text; d.Contact = textBox2.Text; d.Email1 = textBox3.Text; d.Cnic1 = textBox4.Text; d.Age1 = textBox5.Text; d.Gender1 = textBox6.Text; d.Profession1 = textBox7.Text; d.Address1 = textBox8.Text; if (checkBox1.Checked == true) { d.Donate = "Easy Paisa"; } else if (checkBox2.Checked == true) { d.Donate = "Money Order"; } else if (checkBox3.Checked == true) { d.Donate = "Receive cash from doorstep"; } else if (checkBox4.Checked == true) { d.Donate = "Courier goods"; } textBox1.Text = ""; textBox2.Text = ""; textBox3.Text = ""; textBox4.Text = ""; textBox5.Text = ""; textBox6.Text = ""; textBox7.Text = ""; textBox8.Text = ""; checkBox1.Checked = false; checkBox2.Checked = false; checkBox3.Checked = false; checkBox4.Checked = false; Random random = new Random(); int a = random.Next(100, 1000000); d.Id1 = a; Dataclass.ADDdonor(d); MessageBox.Show("Thankyou for registration!"); } }