relocated IDeletable and added methods for downloading assemblies from server /bin when running under Wasm

This commit is contained in:
Shaun Walker
2019-09-28 16:51:01 -04:00
parent acc454c5cd
commit 6fa3b124d2
8 changed files with 82 additions and 9 deletions

View File

@ -105,9 +105,11 @@
await ModuleService.UpdateModuleAsync(module);
PageModule pagemodule = await PageModuleService.GetPageModuleAsync(ModuleState.PageModuleId);
pagemodule.PageId = int.Parse(pageid);
pagemodule.Title = title;
pagemodule.ContainerType = containertype;
await PageModuleService.UpdatePageModuleAsync(pagemodule);
await PageModuleService.UpdatePageModuleOrderAsync(pagemodule.PageId, pagemodule.Pane);
Type moduleType = Type.GetType(ModuleState.ModuleType);
if (moduleType != null)