13 lines
258 B
C#
13 lines
258 B
C#
using MediatR;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface IRequestWrapper<T> : IRequest<ServiceResult<T>>
|
|
{
|
|
|
|
}
|
|
|
|
public interface IRequestHandlerWrapper<TIn, TOut> : IRequestHandler<TIn, ServiceResult<TOut>> where TIn : IRequestWrapper<TOut>
|
|
{
|
|
|
|
} |