Exemplo n.º 1
0
        public void Update(object sender, StockInfoEventHandlerEventArg e)
        {
            StockInfoEventHandlerEventArg sInfoEventHandlerEventArg = e;

            Console.WriteLine(
                sInfoEventHandlerEventArg.Euro > 40
                    ? "Банк {0} продает евро;  Курс евро: {1}"
                    : "Банк {0} покупает евро;  Курс евро: {1}", this.Name, sInfoEventHandlerEventArg.Euro);
        }
Exemplo n.º 2
0
 public Stock()
 {
     _stocksInfoEventHandlerEventArg = new StockInfoEventHandlerEventArg();
 }