protected async void GridDeleteButtonClick(MouseEventArgs args, TblSoCustomer data)
        {
            try
            {
                var otErpDeleteTblSoCustomerResult = await OtErp.DeleteTblSoCustomer(data.Customer_SEQ);

                if (otErpDeleteTblSoCustomerResult != null)
                {
                    grid0.Reload();
                }
            }
            catch (Exception otErpDeleteTblSoCustomerException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to delete TblSoCustomer");
            }
        }