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