namespace FrontOffice.BFF.Application.UserCQ.Commands.CreateNewUser; public class CreateNewUserCommandHandler : IRequestHandler { private readonly IApplicationContractContext _context; public CreateNewUserCommandHandler(IApplicationContractContext context) { _context = context; } public async Task Handle(CreateNewUserCommand request, CancellationToken cancellationToken) { //TODO: Implement your business logic return new CreateNewUserResponseDto(); } }