Add IDeleteProcedure interface for delete operations

Introduced a new namespace `ReC.Application.Common.Procedures.DeleteProcedure` and added the `IDeleteProcedure` interface. This interface defines a `ToObjectProcedure` method, which returns a `DeleteObjectProcedure` object. These changes aim to standardize and encapsulate delete-related procedures in the application.
This commit is contained in:
Developer 02
2026-01-16 01:05:46 +01:00
parent 97f992aef5
commit d3b67bc429

View File

@@ -0,0 +1,6 @@
namespace ReC.Application.Common.Procedures.DeleteProcedure;
public interface IDeleteProcedure
{
public DeleteObjectProcedure ToObjectProcedure();
}