public InvestmentsService(IInvestmentFactory investmentFactory, IMapper mapper, IEnumerable <IExternalInvestmentService> externalInvestmentServices)
        {
            _investmentFactory = investmentFactory;

            _mapper = mapper;
            _externalInvestmentServices = externalInvestmentServices;
        }
Exemplo n.º 2
0
 public void Initialize()
 {
     _investmentFactory = new InvestmentFactory();
 }