main
 1using System;
 2using solidware.financials.messages;
 3
 4namespace solidware.financials.service.handlers
 5{
 6    public class StubLookupService : StockPriceLookupService
 7    {
 8        public CurrentStockPrice FindPriceFor(string symbol)
 9        {
10            return new CurrentStockPrice
11                   {
12                       Symbol = symbol,
13                       Price = Convert.ToDecimal(new Random().NextDouble()),
14                   };
15        }
16    }
17}