Beispiel #1
0
 public IncluirModel(IImpedimentoTarefaAppService impedimentoTarefaAppService,
                     IAppService <ImpedimentoViewModel> impedimentoAppService,
                     ITarefaAppService tarefaAppService)
 {
     _impedimentoTarefaAppService = impedimentoTarefaAppService;
     _impedimentoAppService       = impedimentoAppService;
     _tarefaAppService            = tarefaAppService;
 }
Beispiel #2
0
 public RemoverModel(IImpedimentoTarefaAppService impedimentoTarefaAppService)
 {
     _impedimentoTarefaAppService = impedimentoTarefaAppService;
 }
 public ImpedimentoTarefaController(IImpedimentoTarefaAppService impedimentoTarefaAppService)
 {
     _impedimentoTarefaAppService = impedimentoTarefaAppService;
 }
Beispiel #4
0
 public AlterarModel(IImpedimentoTarefaAppService impedimentoTarefaAppService,
                     IImpedimentoAppService impedimentoAppService)
 {
     _impedimentoTarefaAppService = impedimentoTarefaAppService;
     _impedimentoAppService       = impedimentoAppService;
 }
Beispiel #5
0
 public ListarModel(IImpedimentoTarefaAppService impedimentoTarefaAppService)
 {
     _impedimentoTarefaAppService = impedimentoTarefaAppService;
 }
Beispiel #6
0
 public ImpedimentoTarefaService(IMapper mapper, IImpedimentoTarefaAppService impedimentoTarefaAppService)
 {
     _mapper = mapper;
     _impedimentoTarefaAppService = impedimentoTarefaAppService;
 }