MemExchange.Server.Processor.Book.Orders.StopLimitOrder.ToDto C# (CSharp) Méthode

ToDto() public méthode

public ToDto ( ) : StopLimitOrderDto
Résultat MemExchange.Core.SharedDto.Orders.StopLimitOrderDto
        public StopLimitOrderDto ToDto()
        {
            return new StopLimitOrderDto
            {
                ClientId = clientId,
                Quantity = quantity,
                ExchangeOrderId = exchangeOrderId,
                LimitPrice = limitPrice,
                TriggerPrice = triggerPrice,
                Symbol = symbol,
                Way = way
            };
        }