public MonteCarloSimulationsController(IRepository <MonteCarloSimulation> repository, IRepository <Trade> tradeRepository, IRepository <Market> marketRepository,
                                        IMonteCarloSimulationAppService monteCarloSimulationAppService, ITradingAccountAppService tradingAccountAppService, IObjectMapper objectMapper)
 {
     _repository       = repository;
     _tradeRepository  = tradeRepository;
     _marketRepository = marketRepository;
     _monteCarloSimulationAppService = monteCarloSimulationAppService;
     _tradingAccountAppService       = tradingAccountAppService;
     _objectMapper = objectMapper;
 }
예제 #2
0
 public RunMonteCarloSimulationBackgroundJob(IMonteCarloSimulationAppService monteCarloSimulationAppService)
 {
     _monteCarloSimulationAppService = monteCarloSimulationAppService;
 }