Refactor imports and ensure enum type safety in Catalogs

Reorganize and deduplicate using directives in _Imports.razor for clarity and maintainability. Explicitly cast UpdateProcedure to CatalogUpdateProcedure in CatalogsGrid.razor to enforce type safety. Restore necessary DevExpress and DbFirst namespaces.
This commit is contained in:
OlgunR
2026-04-23 13:54:50 +02:00
parent e4624c92ef
commit df4de5d5f5
2 changed files with 13 additions and 9 deletions

View File

@@ -259,7 +259,7 @@ else
{
CatTitle = editModel.CatTitle,
CatString = editModel.CatString,
UpdateProcedure = editModel.UpdateProcedure
UpdateProcedure = (CatalogUpdateProcedure)editModel.UpdateProcedure
};
try