Exemple #1
0
 public TarefaService(ITarefaRepository tarefaRepository, IUnitOfWork unitOfWork, IWorkflowService workflowService, IApontamentoService apontamentoService, IImpedimentoTarefaService impedimentoTarefaService)
     : base(tarefaRepository, unitOfWork)
 {
     _tarefaRepository         = tarefaRepository;
     _workflowService          = workflowService;
     _apontamentoService       = apontamentoService;
     _impedimentoTarefaService = impedimentoTarefaService;
 }
 public ImpedimentoTarefaAppService(IMapper mapper, IImpedimentoTarefaService impedimentoTarefaService)
     : base(mapper, impedimentoTarefaService)
 {
     _impedimentoTarefaService = impedimentoTarefaService;
 }