示例#1
0
 public InvestimentosServices(ILciRepository lcis,
                              IFundosRepository fundos,
                              ITesouroDiretoRepository tds,
                              IDistributedCache distributedCache)
 {
     _lcis             = lcis;
     _fundos           = fundos;
     _tds              = tds;
     _distributedCache = distributedCache;
 }
示例#2
0
 public FundosService(IFundosRepository fundosRepository) : base(fundosRepository)
 {
     _fundosRepository = fundosRepository;
 }
示例#3
0
 public FundosController(IFundosRepository repository)
 {
     this.repository = repository;
 }