Ejemplo n.º 1
0
        public void CreatePurchaseInvoice()
        {
            string customerID = CustomerIDTextBox.Text;

            PurchaseInvoice purchaseInvoice = new PurchaseInvoice();

            purchaseInvoice.CustomerIDValue = customerID;
            purchaseInvoice.PONumber        = poNumber;
            purchaseInvoice.Show();
        }
Ejemplo n.º 2
0
        public void CreatePurchaseInvoice()
        {
            string customerID = CustomerIDTextBox.Text;

            PurchaseInvoice purchaseInvoice = new PurchaseInvoice();
            purchaseInvoice.CustomerIDValue = customerID;
            purchaseInvoice.PONumber = poNumber;
            purchaseInvoice.Show();
        }