protected async System.Threading.Tasks.Task Form0Submit(C4G.Models.C4G.Equipamento args)
        {
            try
            {
                var c4GUpdateEquipamentoResult = await C4G.UpdateEquipamento(id_recursos, equipamento);

                DialogService.Close(equipamento);
            }
            catch (Exception c4GUpdateEquipamentoException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to update Equipamento");
            }
        }
        protected async System.Threading.Tasks.Task Load()
        {
            var c4GGetLaboratoriosResult = await C4G.GetLaboratorios();

            getLaboratoriosResult = c4GGetLaboratoriosResult;

            var c4GGetRecursosResult = await C4G.GetRecursos();

            getRecursosResult = c4GGetRecursosResult;

            equipamento = new C4G.Models.C4G.Equipamento()
            {
            };
        }
        protected async System.Threading.Tasks.Task Grid0RowSelect(C4G.Models.C4G.Equipamento args)
        {
            var dialogResult = await DialogService.OpenAsync <EditEquipamento>("Edit Equipamento", new Dictionary <string, object>() { { "id_recursos", args.id_recursos } });

            await InvokeAsync(() => { StateHasChanged(); });
        }