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.
8 lines
132 B
C#
8 lines
132 B
C#
using MediatR;
|
|
|
|
namespace ReC.Application.Common.Procedures.DeleteProcedure;
|
|
|
|
public interface IDeleteProcedure : IRequest<int>
|
|
{
|
|
}
|