Beispiel #1
0
 public InvestmentHandler(ITesouroDireto tesouroDireto, ILcis lcis, IFundos fundos, ICalculation calculation)
 {
     _tesouroDireto = tesouroDireto;
     _lcis          = lcis;
     _fundos        = fundos;
     _calculation   = calculation;
 }
Beispiel #2
0
 public CarteiraController(ILogger <CarteiraController> logger,
                           ITesouroDireto tesouroDiretoService,
                           IRendaFixa rendaFixaService,
                           IFundos fundosService,
                           IMemoryCache cache
                           )
 {
     _tesouroDiretoService = tesouroDiretoService;
     _rendaFixaService     = rendaFixaService;
     _fundosService        = fundosService;
     _logger = logger;
     _cache  = cache;
 }
 public ClienteController(ICliente repository, IFundos repositoryFundos)
 {
     _repository       = repository;
     _repositoryFundos = repositoryFundos;
 }