public PrescriptionItem(Prescription prescription, Lek lek) { PrescriptionId = prescription.PrescriptionId; BL7 = lek.BL7; }
void drugListImport() { string path = openFile("Pliki XML|*.xml"); Lek.importFromXML(path); }
private void getDrugsList() { tabControl1.SelectedTab = tabPage4; dataGridView4.DataSource = Lek.getAll(); }
private void policzLekiToolStripMenuItem_Click(object sender, EventArgs e) { string path = openFile("Pliki XML|*.xml"); MessageBox.Show(Lek.countElements(path).ToString()); }
public Refundacja(string poziom, string tekst, Lek lek) { Poziom = poziom; Tekst = tekst; Lek = lek; }