17 lines
526 B
C#
17 lines
526 B
C#
namespace BackOffice.BFF.Application.UserCQ.Queries.GetUser;
|
|
public class GetUserQueryHandler : IRequestHandler<GetUserQuery, GetUserResponseDto>
|
|
{
|
|
private readonly IApplicationContractContext _context;
|
|
|
|
public GetUserQueryHandler(IApplicationContractContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
public async Task<GetUserResponseDto> Handle(GetUserQuery request, CancellationToken cancellationToken)
|
|
{
|
|
//TODO: Implement your business logic
|
|
return new GetUserResponseDto();
|
|
}
|
|
}
|