public static RoundTickDto AsDto(this EngineRoundTick tick) { return(new RoundTickDto() { Round = tick.Round, Ticks = tick.Ticks.Select(o => o.AsDto()), }); }
private void ProcessNewRound() { var roundTick = new EngineRoundTick() { Round = Round, }; EngineRoundTicks.Add(roundTick); CurrentRoundTick = roundTick; }