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

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