using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Command { internal class StockBroker { public void Process(string stockSymbol, TxType txType, int qty) { Console.WriteLine($"{txType.ToString()}, {stockSymbol}, {qty}"); } } }