示例#1
0
 public DividaService(IDividaRepository dividaService) : base(dividaService)
 {
     _dividaService = dividaService;
 }
 public DividaService(IDividaRepository repository,
                      IParametrizacaoRepository parametrizacaoRepository)
 {
     _repository = repository;
     _parametrizacaoRepository = parametrizacaoRepository;
 }
示例#3
0
 public DividaController(IDividaRepository repository)
 {
     _repository = repository;
 }