Esempio n. 1
0
 public ClientsService(
     IClientsTableRepository clientsTableRepository,
     IAccountTableRepository accountTableRepository,
     IStockPriceTableRepository stockPriceTableRepository,
     IStockOfClientTableRepository stockOfClientTableRepository,
     ILogger logger)
 {
     this.clientsTableRepository       = clientsTableRepository;
     this.accountTableRepository       = accountTableRepository;
     this.stockPriceTableRepository    = stockPriceTableRepository;
     this.stockOfClientTableRepository = stockOfClientTableRepository;
     this.logger = logger;
 }
Esempio n. 2
0
 public TradingService(
     IAccountTableRepository accountTableRepository,
     IStockPriceTableRepository stockPriceTableRepository,
     IHistoryTableRepository historyTableRepository,
     IStockOfClientTableRepository stockOfClientTableRepository,
     ILogger logger)
 {
     this.accountTableRepository       = accountTableRepository;
     this.stockPriceTableRepository    = stockPriceTableRepository;
     this.historyTableRepository       = historyTableRepository;
     this.stockOfClientTableRepository = stockOfClientTableRepository;
     this.logger = logger;
 }
Esempio n. 3
0
 public ShowDbInfoService(
     IClientsTableRepository clientsTableRepository,
     IAccountTableRepository accountTableRepository,
     IStockPriceTableRepository stockPriceTableRepository,
     IHistoryTableRepository historyTableRepository,
     IStockOfClientTableRepository stockOfClientTableRepository)
 {
     this.clientsTableRepository       = clientsTableRepository;
     this.accountTableRepository       = accountTableRepository;
     this.stockPriceTableRepository    = stockPriceTableRepository;
     this.historyTableRepository       = historyTableRepository;
     this.stockOfClientTableRepository = stockOfClientTableRepository;
 }