private void btnDodajAutomobil_Click(object sender, EventArgs e) { if (cbPogon.Text == "" || cbMenjac.Text == "" || cbKaroserija.Text == "" || cbGorivo.Text == "" || cbBrojVrata.Text == "") { MessageBox.Show("Morate uneti sva polja"); return; } else if (Validacije.proveriPodatkeAutomobil(txtAutoIDBR, txtModel, txtMarka, txtGodiste, txtKubikaza)) { if (Automobil.dodajAutomobil(automobili, int.Parse(txtAutoIDBR.Text), txtMarka.Text, txtModel.Text, int.Parse(txtGodiste.Text), int.Parse(txtKubikaza.Text), cbPogon.Text, cbMenjac.Text, cbKaroserija.Text, cbGorivo.Text, cbBrojVrata.Text)) { if (File.Exists("slike/automobil1.jpg")) { RadSlika.promenaIDBRaSlika("automobil", "1", txtAutoIDBR.Text); } osvezi(); } } File.Delete("slike/automobil1.jpg"); }
private void btnIzmeniAutomobil_Click(object sender, EventArgs e) { if (automobilIDBRIzmene != "") { if (cbPogon.Text == "" || cbMenjac.Text == "" || cbKaroserija.Text == "" || cbGorivo.Text == "" || cbBrojVrata.Text == "") { MessageBox.Show("Morate uneti sva polja"); return; } else if (Validacije.proveriPodatkeAutomobil(txtAutoIDBR, txtModel, txtMarka, txtGodiste, txtKubikaza)) { if (Automobil.izmeniAutomobil(automobili, automobilIDBRIzmene, int.Parse(txtAutoIDBR.Text), txtMarka.Text, txtModel.Text, int.Parse(txtGodiste.Text), int.Parse(txtKubikaza.Text), cbPogon.Text, cbMenjac.Text, cbKaroserija.Text, cbGorivo.Text, cbBrojVrata.Text)) { Ponuda.izmenaIdbr(ponude, automobilIDBRIzmene, txtAutoIDBR.Text); Rezervacija.izmenaIdbrAuto(rezervacije, int.Parse(automobilIDBRIzmene), int.Parse(txtAutoIDBR.Text)); osvezi(); } } } else { MessageBox.Show("Odaberite korisnika"); } }
private void btnObrisiAutomobil_Click(object sender, EventArgs e) { Automobil.obrisiAutomobil(automobili, automobilIDBR); Ponuda.obrisiPonuda(ponude, automobilIDBR); osvezi(); }