예제 #1
0
 private void mjestoToolStripTablice_Click(object sender, EventArgs e)
 {
     using (new StatusBusy())
     {
         MjestoBllProvider bll = new MjestoBllProvider();
         GenericForm       f   = new GenericForm("Mjesto", bll.FetchAll(), bll, typeof(Mjesto));
         f.MdiParent = this;
         f.Show();
     }
 }
예제 #2
0
 private void artiklToolStripTablice_Click(object sender, EventArgs e)
 {
     using (new StatusBusy())
     {
         ArtiklBllProvider bll = new ArtiklBllProvider();
         GenericForm       f   = new GenericForm("Artikl", bll.FetchAll(), bll, typeof(Artikl));
         f.MdiParent = this;
         f.Show();
     }
 }