Exemplo n.º 1
0
 public PortfolioController(IStockService stockService, IStockTransactionService stockTransactionService, IStockTransactionRepo stockTransactionRepo)
 {
     _stockService            = stockService;
     _stockTransactionService = stockTransactionService;
     _stockTransactionRepo    = stockTransactionRepo;
 }
Exemplo n.º 2
0
 public StockTransactionService(IStockTransactionRepo stockTransactionRepo)
 {
     _stockTransactionRepo = stockTransactionRepo;
 }