Exemplo n.º 1
0
        public ListarModel(IClaimsManager claimsManager,
                           IApontamentoRepository apontamentoRepository,
                           IRecursoTarefaRepository recursoTarefaRepository)
        {
            _claimsManager = claimsManager;

            _apontamentoRepository   = apontamentoRepository;
            _recursoTarefaRepository = recursoTarefaRepository;
        }
Exemplo n.º 2
0
 public ApontamentoAppService(IMapper mapper, IRepository <Apontamento> repository, IUnitOfWork unitOfWork, IApontamentoRepository apontamentoRepository, ITarefaAppService tarefaAppService)
     : base(mapper, repository, unitOfWork)
 {
     _apontamentoRepository = apontamentoRepository;
     _tarefaAppService      = tarefaAppService;
 }
Exemplo n.º 3
0
 public RecursoTarefaRepository(Context context,
                                IApontamentoRepository apontamentoRepository)
 {
     _context = context;
     _apontamentoRepository = apontamentoRepository;
 }
Exemplo n.º 4
0
 public RemoverModel(IApontamentoRepository apontamentoRepository) => _apontamentoRepository = apontamentoRepository;
Exemplo n.º 5
0
 public ApontamentoService(IApontamentoRepository apontamentoRepository, IUnitOfWork unitOfWork)
     : base(apontamentoRepository, unitOfWork)
 {
     _apontamentoRepository = apontamentoRepository;
 }