public void ResetTransaction() { m_transactionSession = new TransactionSession(); m_UIControl.lbl_errorText.Text = string.Empty; m_UIControl.lbl_errorAmountPaid.Text = string.Empty; ResetBillProductsTable(); ResetTextBoxes(); }
public FormController_ViewBill(TransactionSession transactionSession, Form_ViewBill UIControl) : base(UIControl) { m_TransactionSession = transactionSession; Initialize(); }
public NewTransactionController(TransactionControl UIControl) : base(UIControl) { SetEventHandler(new EventHandler_NewTransaction(this)); m_transactionSession = new TransactionSession(); }