Ejemplo n.º 1
0
 public PrescriptionItem(Prescription prescription, Lek lek)
 {
     PrescriptionId = prescription.PrescriptionId;
     BL7            = lek.BL7;
 }
Ejemplo n.º 2
0
        void drugListImport()
        {
            string path = openFile("Pliki XML|*.xml");

            Lek.importFromXML(path);
        }
Ejemplo n.º 3
0
 private void getDrugsList()
 {
     tabControl1.SelectedTab  = tabPage4;
     dataGridView4.DataSource = Lek.getAll();
 }
Ejemplo n.º 4
0
        private void policzLekiToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string path = openFile("Pliki XML|*.xml");

            MessageBox.Show(Lek.countElements(path).ToString());
        }
Ejemplo n.º 5
0
 public Refundacja(string poziom, string tekst, Lek lek)
 {
     Poziom = poziom;
     Tekst  = tekst;
     Lek    = lek;
 }