Beispiel #1
0
 public ListarModel(IClaimsManager claimsManager,
                    IApontamentoAppService apontamentoAppService,
                    IRecursoTarefaAppService recursoTarefaAppService)
 {
     _claimsManager           = claimsManager;
     _apontamentoAppService   = apontamentoAppService;
     _recursoTarefaAppService = recursoTarefaAppService;
 }
 public ApontamentoController(IApontamentoAppService apontamentoAppService)
 {
     _apontamentoAppService = apontamentoAppService;
 }
 public RecursoTarefaAppService(IMapper mapper, IRepository <RecursoTarefa> repository, IUnitOfWork unitOfWork, IRecursoTarefaRepository recursoTarefaRepository, IApontamentoAppService apontamentoAppService)
     : base(mapper, repository, unitOfWork)
 {
     _recursoTarefaRepository = recursoTarefaRepository;
     _apontamentoAppService   = apontamentoAppService;
 }
Beispiel #4
0
 public RemoverModel(IApontamentoAppService apontamentoAppService)
 {
     _apontamentoAppService = apontamentoAppService;
 }
Beispiel #5
0
 public ApontamentoService(IMapper mapper, IApontamentoAppService apontamentoAppService)
 {
     _mapper = mapper;
     _apontamentoAppService = apontamentoAppService;
 }