protected async System.Threading.Tasks.Task GridDeleteButtonClick(MouseEventArgs args, dynamic data)
        {
            try
            {
                var c4GDeleteEquipamentoResult = await C4G.DeleteEquipamento(data.id_recursos);

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