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:
@@ -0,0 +1,6 @@
|
|||||||
|
namespace ReC.Application.Common.Procedures.UpdateProcedure;
|
||||||
|
|
||||||
|
public interface IUpdateProcedure
|
||||||
|
{
|
||||||
|
public UpdateObjectProcedure ToObjectProcedure(long guid, string? changedWho = null);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user