public async override Task Handle(CreatingNewOrderDomainEvent notification, CancellationToken cancellationToken)
        {
            var asset = await _assetRepository.GetAssetById(notification.AssetId);

            await _orderRepository.SendOrderToWalletAsync(notification.UserId, asset.Symbol, notification.Value, notification.Ammount, notification.IsClodeOrder, notification.OrderType);

            await Task.CompletedTask;
        }