protected async System.Threading.Tasks.Task Form0Submit(Bssr.Models.Bssr4.TblIzvodi args) { try { var bssr4CreateTblIzvodiResult = await Bssr4.CreateTblIzvodi(tblizvodi); DialogService.Close(tblizvodi); } catch (System.Exception bssr4CreateTblIzvodiException) { NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to create new TblIzvodi!"); } }
protected async System.Threading.Tasks.Task Grid0RowSelect(Bssr.Models.Bssr4.TblIzvodi args) { var dialogResult = await DialogService.OpenAsync <EditTblIzvodi>("Edit Tbl Izvodi", new Dictionary <string, object>() { { "ID", args.ID } }); await InvokeAsync(() => { StateHasChanged(); }); }
protected async System.Threading.Tasks.Task Load() { tblizvodi = new Bssr.Models.Bssr4.TblIzvodi() { }; }
protected async System.Threading.Tasks.Task Load() { var bssr4GetTblIzvodiByIdResult = await Bssr4.GetTblIzvodiById(ID); tblizvodi = bssr4GetTblIzvodiByIdResult; }