protected async void GridDeleteButtonClick(MouseEventArgs args, TblSoOrderDetailStatus data)
        {
            try
            {
                var otErpDeleteTblSoOrderDetailStatusResult = await OtErp.DeleteTblSoOrderDetailStatus(data.SODetailStatus_SEQ);

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