using AutoMapper; using MediatR; using ExpenseTracker.Application.Common.Models; namespace ExpenseTracker.Application.Users.Queries.GetWithPagination; public class GetUserssWithPaginationQueryHandler : IRequestHandler> { private readonly IMapper _mapper; public GetUserssWithPaginationQueryHandler( IMapper mapper) { _mapper = mapper; } public async Task> Handle(GetUsersWithPaginationQuery request, CancellationToken cancellationToken) { throw new NotImplementedException(); } }