public GreekBseCmRepository(IGenericRepository <object> tradeViewGenericRepo, ITradeViewGenericRepository tradeViewRepo, ITradeViewRefRepository tradeViewRefRepository, IConfiguration configuration, IFileHelper fileHelper, IMapper mapper) : base(fileHelper, _log) { _tradeViewGenericRepo = tradeViewGenericRepo; _tradeViewRepo = tradeViewRepo; _tradeViewRefRepository = tradeViewRefRepository; _configuration = configuration; _mapper = mapper; }
public TradeViewNseCmReposiotry(IGenericRepository <object> tradeViewGenericRepo, ITradeViewRepository tradeViewRepositoryEf, IMapper mapper, ITradeViewRefRepository tradeViewRefRepository, ITradeViewGenericRepository tradeViewGenericRepository, IConfiguration configuration) { _tradeViewGenericRepo = tradeViewGenericRepo; _tradeViewRepositoryEf = tradeViewRepositoryEf; _tradeViewRefRepository = tradeViewRefRepository; _tradeViewRepo = tradeViewGenericRepository; _mapper = mapper; _configuration = configuration; _chunkSize = _configuration.GetSection("SynchChunkSize")?.Value ?? "10000"; }
public TradeViewNseFoRepository(IGenericRepository <object> tradeViewNseFoRepo, ITradeViewRepository tradeViewRepositoryEf, IMapper mapper, ITradeViewGenericRepository tradeViewRepo, ITradeViewRefRepository tradeViewRefRepository, IConfiguration configuration, ICurrentExprityDateRefRepository currentExprityDateRefRepository) { _tradeViewNseFoRepo = tradeViewNseFoRepo; _tradeViewRepositoryEf = tradeViewRepositoryEf; _tradeViewRepo = tradeViewRepo; _tradeViewRefRepository = tradeViewRefRepository; _mapper = mapper; _configuration = configuration; _chunkSize = _configuration.GetSection("SynchChunkSize")?.Value ?? "10000"; _currentExprityDateRefRepository = currentExprityDateRefRepository; }