private void OnGenerateBillClick(object sender, EventArgs e) { PatientInvoice p = new PatientInvoice(); p.PatientGuid = mPatient.ObjectGuid; p.Show(); }
private void btnGenerateBill_Click(object sender, EventArgs e) { PatientInvoice p = new PatientInvoice(); p.PatientMedicineBillGuid = mPatientBill.ObjectGuid; p.PatientName = mPatientBill.Patient == null ? mPatientBill.Other : mPatientBill.Patient.DisplayName; if (mPatientBill.Patient != null) { p.PatientGuid = mPatientBill.PatientGuid; } p.Show(); }