Ejemplo n.º 1
0
        protected async void GridDeleteButtonClick(MouseEventArgs args, TblSoOrderStatus data)
        {
            try
            {
                var otErpDeleteTblSoOrderStatusResult = await OtErp.DeleteTblSoOrderStatus(data.SOStatus_SEQ);

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