示例#1
0
 public RetornoService(
     IRetornoRepository retornoRepository,
     IBoletoRepository boletoRepository,
     IAlunoRepository alunoRepository
     ) : base(retornoRepository)
 {
     this.retornoRepository = retornoRepository;
     this.boletoRepository  = boletoRepository;
     this.alunoRepository   = alunoRepository;
 }
示例#2
0
 public BoletoService(IBoletoRepository boletoRepository) : base(boletoRepository)
 {
     this.boletoRepository = boletoRepository;
 }
示例#3
0
 public BoletoService(IBoletoRepository repository)
 {
     base._repository = repository;
 }
 public BoletoBusinessImpl(IBoletoRepository repository)
 {
     _repository = repository;
     _converter  = new BoletoConverter();
 }
示例#5
0
 public BoletoService(IBoletoRepository boletoRepository)
 {
     _boletoRepository = boletoRepository;
 }