public async Task <ReturnResponse <RegisterAccountViewModel> > Handle(CreateAccountCommand request, CancellationToken cancellationToken)
 {
     return(await _accountManagementService.RegisterAsync(request.CreateAccount));
 }