Esempio n. 1
0
 public ManterTarefas(IRepositorioTarefa repositorioTarefa,
                      IUnitOfWork unitOfWork)
 {
     this.repositorioTarefa = repositorioTarefa ?? throw new ArgumentNullException(nameof(repositorioTarefa));
     this.unitOfWork        = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
Esempio n. 2
0
 public OperacaoTarefa()
 {
     _repositorioTarefa = new RepositorioTarefa();
 }