Ejemplo 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));
 }
Ejemplo n.º 2
0
 public OperacaoTarefa()
 {
     _repositorioTarefa = new RepositorioTarefa();
 }