public ServiceContaCorrente(
     IRepositoryContaCorrente RepositoryContaCorrente,
     IServiceHistoricoMovimento ServiceHistoricoMovimento)
     : base(RepositoryContaCorrente)
 {
     _repositoryContaCorrente   = RepositoryContaCorrente;
     _serviceHistoricoMovimento = ServiceHistoricoMovimento;
     ResultadoValidacao         = new ResultadoValidacao();
 }
Beispiel #2
0
 public ServiceContaCorrente(IRepositoryContaCorrente _repository)
 {
     repository = _repository;
 }
Beispiel #3
0
 public ServiceContaCorrente(IRepositoryContaCorrente RepositoryContaCorrente)
     : base(RepositoryContaCorrente)
 {
     _repositoryContaCorrente = RepositoryContaCorrente;
 }