Пример #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;
 }
Пример #2
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;
 }