protected async void Load()
        {
            canEdit = true;

            try
            {
                var otErpGetTblSoCustomerByCustomerSeqResult = await OtErp.GetTblSoCustomerByCustomerSeq(int.Parse(Customer_SEQ));

                tblsocustomer = otErpGetTblSoCustomerByCustomerSeqResult;
            }
            catch (Exception otErpGetTblSoCustomerByCustomerSeqException)
            {
            }

            var otErpGetTblGnAddressBooksResult = await OtErp.GetTblGnAddressBooks();

            getTblGnAddressBooksResult = otErpGetTblGnAddressBooksResult;

            var otErpGetTblGnPaymentTermsResult = await OtErp.GetTblGnPaymentTerms();

            getTblGnPaymentTermsResult = otErpGetTblGnPaymentTermsResult;

            var otErpGetTblGnPaymentTypesResult = await OtErp.GetTblGnPaymentTypes();

            getTblGnPaymentTypesResult = otErpGetTblGnPaymentTypesResult;
        }