Beispiel #1
0
        public Task Transmit(CurrentRoverPosition currentRoverPosition)
        {
            // Usually this will be some sort of DTO to decouple
            // domain value type from its outgoing representation
            Console.WriteLine(currentRoverPosition.ToString());

            return(Task.CompletedTask);
        }