private void button1_Click(object sender, EventArgs e) { VrsteProizvoda form = new VrsteProizvoda(); NabavkaProizvoda.VrsteProizvodaForm vrste= new NabavkaProizvoda.VrsteProizvodaForm(); vrste.Show(); }
public static List<VrsteProizvoda> VrsteSelect() { List<VrsteProizvoda> vrste = Connection.dm.VrsteProizvoda.OrderBy(x => x.Naziv).ToList(); VrsteProizvoda empty = new VrsteProizvoda(); empty.VrstaID = 0; empty.Naziv = ""; vrste.Insert(0, empty); return vrste; }
public static void VrsteProizvodaInsert(VrsteProizvoda vrste) { Connection.dm.esp_VrsteProizvoda_Insert(vrste.Naziv); }