Example #1
0
 /// <summary>
 /// Stock History information
 /// </summary>
 /// <param name="stockHistoryLogic"></param>
 public StockHistoryV1Controller(IStockHistoryLogic stockHistoryLogic)
 {
     if (stockHistoryLogic == null)
     {
         throw new ArgumentNullException();
     }
     _stockHistoryLogic = stockHistoryLogic;
 }
Example #2
0
 public StockHistoryController(IStockHistoryLogic stockHistoryLogic)
 {
     this.stockHistoryLogic = stockHistoryLogic;
 }