public BuyAndHoldSpinOffController(IBhService bhService,
                                    IBhSpinOffDtoMap bhSpinOffDtoMap,
                                    IBuyAndHoldService buyAndHoldService,
                                     ISecurityService securityService,
                                     ITransactionTypeService transactionTypeService)
 {
     _bhService = bhService;
     _bhSpinOffDtoMap = bhSpinOffDtoMap;
     _buyAndHoldService = buyAndHoldService;
     _securityService = securityService;
     _transactionTypeService = transactionTypeService;
 }
Esempio n. 2
0
 public BuyAndHoldController(IBuyAndHoldService buyAndHoldService,
     ITickerService tickerService,
     INavService navService,
     ISecurityService securityService,
     IBuyAndHoldTransactionDtoMap buyAndHoldTransactionDtoMap,
     IBuyAndHoldRawTransactionMapper buyAndHoldRawTransactionMapper,
     IBuyAndHoldTransactionLibrary buyAndHoldTransactionLibrary,
     IBuyAndHoldRawTransactionLibrary buyAndHoldRawTransactionLibrary)
 {
     _buyAndHoldService = buyAndHoldService;
     _tickerService = tickerService;
     _navService = navService;
     _securityService = securityService;
     _buyAndHoldTransactionDtoMap = buyAndHoldTransactionDtoMap;
     _buyAndHoldRawTransactionMapper = buyAndHoldRawTransactionMapper;
     _buyAndHoldTransactionLibrary = buyAndHoldTransactionLibrary;
     _buyAndHoldRawTransactionLibrary = buyAndHoldRawTransactionLibrary;
 }
 public BuyAndHoldTransactionLibrary(IBuyAndHoldService buyAndHoldService)
 {
     _buyAndHoldService = buyAndHoldService;
 }