public TiposController( ITipoRepository tipoRepository, IUserHelper userHelper) { this.tipoRepository = tipoRepository; this.userHelper = userHelper; }
public SalidasController( ISalidaRepository salidaRepository, ITipoRepository tipoRepository, IUserHelper userHelper) { this.salidaRepository = salidaRepository; this.tipoRepository = tipoRepository; this.userHelper = userHelper; }
//private readonly IEventStoreRepository _eventStoreRepository; //private readonly IMediatorHandler Bus; public TipoAppService(IMapper mapper, ITipoRepository tipoRepository //,IMediatorHandler bus //,IEventStoreRepository eventStoreRepository ) { _mapper = mapper; _tipoRepository = tipoRepository; //Bus = bus; //_eventStoreRepository = eventStoreRepository; }
public SubmissaoController(ISubmissaoRepository submissaoRepository, IParticipanteRepository participanteRepository, IEventoRepository eventoRepository, ITipoRepository tipoRepository, IEventoParticipanteRepository eventoParticipanteRepository, IWebHostEnvironment webHostEnvironment, IDataImportanteRepository dataImportanteRepository, IAlertaRepository alertaRepository, IHttpContextAccessor httpContextAccessor, IEmailSender emailSender, IMembroCientificoRepository membroCientificoRepository) { _submissaoRepository = submissaoRepository; _participanteRepository = participanteRepository; _eventoRepository = eventoRepository; _tipoRepository = tipoRepository; _eventoParticipanteRepository = eventoParticipanteRepository; _webHostEnvironment = webHostEnvironment; _dataImportanteRepository = dataImportanteRepository; _alertaRepository = alertaRepository; _httpContextAccessor = httpContextAccessor; _emailSender = emailSender; _membroCientificoRepository = membroCientificoRepository; }
public TipoService(ITipoRepository tipoRepository) { _tipoRepository = tipoRepository; }
public TipoRepositoryTests() { _tipoRepository = Resolve <ITipoRepository>(); }
public TipoController(ITipoRepository tipoRep, ILinhaRepository linhaRep, IUnitOfWork uow) { _tipoRep = tipoRep; _linhaRep = linhaRep; _uow = uow; }
public TiposController() { TipoRepository = new TipoRepository(); }
public TipoService(TipoRepository _tipoRepository) { this.tipoRepository = _tipoRepository; }
public TiposController(ITipoRepository tipoRepository) { _tipoRepository = tipoRepository; }
public TipoController(ITipoRepository tipo, IOptions <AppSettings> appSettings) { _tipo = tipo; _appSettings = appSettings.Value; }
public CertificadoController(ICertificadoRepository certificadoRepository, ITipoRepository tipoRepository, IFlashMessage flashMessage) { _certificadoRepository = certificadoRepository; _tipoRepository = tipoRepository; _flashMessage = flashMessage; }
public TipoController(ITipoRepository repository) { _repository = repository; }
public DocumentoController(IDocumentoRepository documentoRepository, ITipoRepository tipoRepository, IFlashMessage flashMessage) { _documentoRepository = documentoRepository; _tipoRepository = tipoRepository; _flashMessage = flashMessage; }
public ContratoController(IContratoRepository contratoRepository, ITipoRepository tipoRepository, IFlashMessage flashMessage) { _contratoRepository = contratoRepository; _tipoRepository = tipoRepository; _flashMessage = flashMessage; }
public TiposController(ITipoRepository repository, IMapper mapper) { this.repository = repository; this.mapper = mapper; }
public TipoApplicationService(ITipoRepository repository, IUnitOfWork unitOfWork) : base(unitOfWork) { _repository = repository; }
public TipoAppService(TipoRepository tipoRepository) { this._tipoRepository = tipoRepository; }
public TipoService(ITipoRepository _tipoRepository, ITipoUtil _tipoUtil) { this.tipoRepository = _tipoRepository; this.tipoUtil = _tipoUtil; }
public TipoService(ITipoRepository repository) : base(repository) { _repository = repository; }
public ProdutosController(IProdutoRepository produtoRepository, ITipoRepository tipoRepository) { _produtoRepository = produtoRepository; _tipoRepository = tipoRepository; }