protected async System.Threading.Tasks.Task Load() { var bssr4GetTblSesijasResult = await Bssr4.GetTblSesijas(); getTblSesijasForSesijaResult = bssr4GetTblSesijasResult; tbllog = new Bssr.Models.Bssr4.TblLog() { }; }
protected async System.Threading.Tasks.Task Form0Submit(Bssr.Models.Bssr4.TblLog args) { try { var bssr4UpdateTblLogResult = await Bssr4.UpdateTblLog(ID, tbllog); DialogService.Close(tbllog); } catch (System.Exception bssr4UpdateTblLogException) { NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to update TblLog"); } }
protected async System.Threading.Tasks.Task Grid0RowSelect(Bssr.Models.Bssr4.TblLog args) { var dialogResult = await DialogService.OpenAsync <EditTblLog>("Edit Tbl Log", new Dictionary <string, object>() { { "ID", args.ID } }); await InvokeAsync(() => { StateHasChanged(); }); }