Add IUpdateProcedure interface for update handling

Introduced a new namespace `ReC.Application.Common.Procedures.UpdateProcedure` and added the `IUpdateProcedure` interface. This interface defines a `ToObjectProcedure` method for converting to an `UpdateObjectProcedure`. The method accepts a `guid` parameter and an optional `changedWho` parameter to track changes. This addition establishes a contract for handling update procedures.
This commit is contained in:
Developer 02
2026-01-16 00:58:26 +01:00
parent c8a9245b54
commit 252fc10243

View File

@@ -0,0 +1,6 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure;
public interface IUpdateProcedure
{
public UpdateObjectProcedure ToObjectProcedure(long guid, string? changedWho = null);
}