12 lines
398 B
C#
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
|
|
{
|
|
|
|
} |