Renamed all `Guid` properties and parameters to `Id` in update procedure interfaces, records, and handlers. This clarifies that the identifier is a numeric ID, not a GUID, and improves consistency across the codebase. All related method signatures and usages have been updated accordingly.
7 lines
188 B
C#
7 lines
188 B
C#
namespace ReC.Application.Common.Procedures.UpdateProcedure;
|
|
|
|
public interface IUpdateProcedure
|
|
{
|
|
public UpdateObjectProcedure ToObjectProcedure(long id, string? changedWho = null);
|
|
}
|