Exemplo n.º 1
0
 public PrescriptionItem(Prescription prescription, Lek lek)
 {
     PrescriptionId = prescription.PrescriptionId;
     BL7            = lek.BL7;
 }
Exemplo n.º 2
0
 void getPrescriptionHistory()
 {
     dataGridView1.DataSource         = Prescription.getViewList(patient);
     dataGridView1.Columns[0].Visible = false;
 }
Exemplo n.º 3
0
 private void wyświetlWystawioneToolStripMenuItem_Click(object sender, EventArgs e)
 {
     tabControl1.SelectedTab  = tabPage2;
     dataGridView2.DataSource = Prescription.getViewList();
 }
Exemplo n.º 4
0
 public FrmPrescriptionPrint(Prescription prescription)
 {
     InitializeComponent();
     this.prescription = prescription;
     startup();
 }