コード例 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            VrsteProizvoda form = new VrsteProizvoda();

            NabavkaProizvoda.VrsteProizvodaForm vrste= new NabavkaProizvoda.VrsteProizvodaForm();
            vrste.Show();
        }
コード例 #2
0
ファイル: DAProizvodi.cs プロジェクト: Razorcat/PEP_3023_3022
        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;
        }
コード例 #3
0
ファイル: DAProizvodi.cs プロジェクト: Razorcat/PEP_3023_3022
 public static void VrsteProizvodaInsert(VrsteProizvoda vrste)
 {
     Connection.dm.esp_VrsteProizvoda_Insert(vrste.Naziv);
 }