17 lines
589 B
C#
17 lines
589 B
C#
|
|
namespace BackOffice.BFF.Application.UserAddressCQ.Queries.GetUserAddress;
|
||
|
|
public class GetUserAddressQueryHandler : IRequestHandler<GetUserAddressQuery, GetUserAddressResponseDto>
|
||
|
|
{
|
||
|
|
private readonly IApplicationContractContext _context;
|
||
|
|
|
||
|
|
public GetUserAddressQueryHandler(IApplicationContractContext context)
|
||
|
|
{
|
||
|
|
_context = context;
|
||
|
|
}
|
||
|
|
|
||
|
|
public async Task<GetUserAddressResponseDto> Handle(GetUserAddressQuery request, CancellationToken cancellationToken)
|
||
|
|
{
|
||
|
|
//TODO: Implement your business logic
|
||
|
|
return new GetUserAddressResponseDto();
|
||
|
|
}
|
||
|
|
}
|