protected async void Form0Submit(TblSoCustomer args)
        {
            try
            {
                var otErpCreateTblSoCustomerResult = await OtErp.CreateTblSoCustomer(tblsocustomer);

                DialogService.Close(tblsocustomer);
            }
            catch (Exception otErpCreateTblSoCustomerException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to create new TblSoCustomer!");
            }
        }