Added CatalogUpdateProcedure enum to domain. CatalogWriteDto now includes UpdateProcedure property in both application and BlazorWasm layers. Catalogs.razor form allows users to choose between PRTBMY_CATALOG_UPDATE and PRTBMY_CATALOG_SAVE when editing. Repository, service, and handler layers updated to pass and use the selected procedure. Default remains Update. Updated comments and TODOs for clarity and future refactoring.
8 lines
95 B
C#
8 lines
95 B
C#
namespace DbFirst.Domain;
|
|
|
|
public enum CatalogUpdateProcedure
|
|
{
|
|
Update = 0,
|
|
Save = 1
|
|
}
|