protected async System.Threading.Tasks.Task Load() { canEdit = true; var dbAtVdc2GetTblIcClassificationByClassifiIdResult = await DbAtVdc2.GetTblIcClassificationByClassifiId($"{Classifi_ID}"); tblicclassification = dbAtVdc2GetTblIcClassificationByClassifiIdResult; }
protected async System.Threading.Tasks.Task Form0Submit(CanErp2.Models.DbAtVdc2.TblIcClassification args) { try { var dbAtVdc2UpdateTblIcClassificationResult = await DbAtVdc2.UpdateTblIcClassification($"{Classifi_ID}", tblicclassification); DialogService.Close(tblicclassification); } catch (Exception dbAtVdc2UpdateTblIcClassificationException) { NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to update TblIcClassification"); } }
protected async System.Threading.Tasks.Task Grid0RowSelect(CanErp2.Models.DbAtVdc2.TblIcClassification args) { var result = await DialogService.OpenAsync <EditTblIcClassification>("Edit Tbl Ic Classification", new Dictionary <string, object>() { { "Classifi_ID", args.Classifi_ID } }); await InvokeAsync(() => { StateHasChanged(); }); }
protected async System.Threading.Tasks.Task Load() { tblicclassification = new CanErp2.Models.DbAtVdc2.TblIcClassification(); }