IInsertProcedure now inherits from IRequest<long> to integrate with MediatR's request/response pattern. Removed the ToObjectProcedure method and added the necessary MediatR using directive.
7 lines
135 B
C#
7 lines
135 B
C#
using MediatR;
|
|
|
|
namespace ReC.Application.Common.Procedures.InsertProcedure;
|
|
|
|
public interface IInsertProcedure : IRequest<long>
|
|
{
|
|
} |