public ProjetoService(IProjetoRepository projetoRepository, IAlternativaRepository alternativaRepository, ICriterioRepository criterioRepository) { _projetoRepository = projetoRepository; _alternativaRepositorio = alternativaRepository; _criterioRepositorio = criterioRepository; }
public CriterioService(IUnitOfWork UoW, ICriterioRepository criterioRepository) { _uow = UoW; _criterioRepository = criterioRepository; }
public CriteriosService(ICriterioRepository criterioRepository, IProjetoRepository projetoRepository) { _criterioRepository = criterioRepository; _projetoRepository = projetoRepository; }