Exemplo n.º 1
0
        public void CreatePawnReceipt()
        {
            string customerId    = CustomerIDTextBox.Text;
            string transactionId = poNumber;

            PawnReceipt pawnReceipt = new PawnReceipt();

            pawnReceipt.CustomerIDValue   = customerId;
            pawnReceipt.TransactionNumber = transactionId;
            pawnReceipt.Show();
        }
Exemplo n.º 2
0
        public void CreatePawnReceipt()
        {
            string customerId = CustomerIDTextBox.Text;
            string transactionId = poNumber;

            PawnReceipt pawnReceipt = new PawnReceipt();
            pawnReceipt.CustomerIDValue = customerId;
            pawnReceipt.TransactionNumber = transactionId;
            pawnReceipt.Show();
        }