コード例 #1
0
        protected async System.Threading.Tasks.Task Load()
        {
            var bssr4GetTblFirmasResult = await Bssr4.GetTblFirmas();

            getTblFirmasForFirmaIDResult = bssr4GetTblFirmasResult;

            tblnalog = new Bssr.Models.Bssr4.TblNalog()
            {
            };
        }
コード例 #2
0
        protected async System.Threading.Tasks.Task Form0Submit(Bssr.Models.Bssr4.TblNalog args)
        {
            try
            {
                var bssr4CreateTblNalogResult = await Bssr4.CreateTblNalog(tblnalog);

                DialogService.Close(tblnalog);
            }
            catch (System.Exception bssr4CreateTblNalogException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to create new TblNalog!");
            }
        }
コード例 #3
0
        protected async System.Threading.Tasks.Task Grid0RowSelect(Bssr.Models.Bssr4.TblNalog args)
        {
            var dialogResult = await DialogService.OpenAsync <EditTblNalog>("Edit Tbl Nalog", new Dictionary <string, object>() { { "ID", args.ID } });

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