protected async void GridDeleteButtonClick(MouseEventArgs args, TblGnCity data)
        {
            try
            {
                var otErpDeleteTblGnCityResult = await OtErp.DeleteTblGnCity(data.City_SEQ);

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