public ServiceOperacoes( IRepositoryConta repositoryConta, IRepositoryLancamento repositoryLancamento, IRepositoryCorrentista repositoryCorrentista, IUnitOfWork unitOfWork) { _repositoryConta = repositoryConta; _repositoryLancamento = repositoryLancamento; _repositoryCorrentista = repositoryCorrentista; _unitOfWork = unitOfWork; }
public ServiceAdmin(IRepositoryCorrentista repositoryCorrentista, IRepositoryConta repositoryConta, IUnitOfWork uow) { _repositoryCorrentista = repositoryCorrentista; _repositoryConta = repositoryConta; _uow = uow; }