Files
ReC/src/ReC.Application/Common/Procedures/DeleteProcedure/IDeleteProcedure.cs
TekH 71430918ac Refactor IDeleteProcedure to use MediatR IRequest<int>
IDeleteProcedure now inherits from MediatR's IRequest<int>, aligning it with MediatR request/response patterns. Removed the ToObjectProcedure method from the interface. Added the MediatR using directive. Note: The namespace and using directive are now on the same line, which may need formatting correction.
2026-03-24 09:43:36 +01:00

8 lines
132 B
C#

using MediatR;
namespace ReC.Application.Common.Procedures.DeleteProcedure;
public interface IDeleteProcedure : IRequest<int>
{
}