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:
@@ -0,0 +1,6 @@
|
|||||||
|
namespace ReC.Application.Common.Procedures.DeleteProcedure;
|
||||||
|
|
||||||
|
public interface IDeleteProcedure
|
||||||
|
{
|
||||||
|
public DeleteObjectProcedure ToObjectProcedure();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user