Files
Backend-Api/ProgramManager/src/Application/GozareshgirProgramManager.Application/_Common/Interfaces/IBasePaginationQueryHandler.cs

12 lines
398 B
C#

using GozareshgirProgramManager.Application._Common.Models;
using MediatR;
namespace GozareshgirProgramManager.Application._Common.Interfaces;
public interface IBasePaginationQueryHandler<in TQuery, TResponse>
: IRequestHandler<TQuery, OperationResult<PaginationResult<TResponse>>>
where TQuery : PaginationRequest, IBasePaginationQuery<TResponse>
where TResponse : class
{
}