protected async System.Threading.Tasks.Task Form0Submit(Bssr.Models.Bssr4.TblSmetkaIzmenetum args) { try { var bssr4UpdateTblSmetkaIzmenetumResult = await Bssr4.UpdateTblSmetkaIzmenetum(ID, tblsmetkaizmenetum); DialogService.Close(tblsmetkaizmenetum); } catch (System.Exception bssr4UpdateTblSmetkaIzmenetumException) { NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to update TblSmetkaIzmenetum"); } }
protected async System.Threading.Tasks.Task Load() { var bssr4GetTblSmetkaIzmenetumByIdResult = await Bssr4.GetTblSmetkaIzmenetumById(ID); tblsmetkaizmenetum = bssr4GetTblSmetkaIzmenetumByIdResult; }
protected async System.Threading.Tasks.Task Load() { tblsmetkaizmenetum = new Bssr.Models.Bssr4.TblSmetkaIzmenetum() { }; }
protected async System.Threading.Tasks.Task Grid0RowSelect(Bssr.Models.Bssr4.TblSmetkaIzmenetum args) { var dialogResult = await DialogService.OpenAsync <EditTblSmetkaIzmeneta>("Edit Tbl Smetka Izmeneta", new Dictionary <string, object>() { { "ID", args.ID } }); await InvokeAsync(() => { StateHasChanged(); }); }