public HeroesFetchingOperation( IOptionsMonitor <HeroesFetchingOperationOptions> options, IHeroesRepository repository, ILogger <HeroesFetchingOperation> logger, IHostApplicationLifetime applicationHostLifetime) { this.options = options; this.repository = repository; this.logger = logger; this.applicationHostLifetime = applicationHostLifetime; }
public HeroesController(IHeroesRepository heroesRepo) { _heroesRepo = heroesRepo; }
public HeroesController(IHeroesRepository heroesRepository) { _heroesRepository = heroesRepository ?? throw new ArgumentNullException(nameof(heroesRepository)); }
public HeroesController(IHeroesRepository repository) { _repository = repository; }
public DefaultController(IHeroesRepository heroesRepository, IMatchesRepository matchesRepository) { this.heroesRepository = heroesRepository; this.matchesRepository = matchesRepository; }
public HeroesService(IHeroesRepository heroesRepository) { _heroesRepository = heroesRepository; }
public HeroesController(IHeroesRepository heroesRepository) { _heroesRepository = heroesRepository; }
public HeroesController(ILogger <HeroesController> logger, IHeroesRepository heroesRepository) { _logger = logger; _heroesRepository = heroesRepository; }
public HeroesController(IHeroesRepository repo) { _repo = repo; }
public HeroesHandler(IHeroesRepository heroesRepository, IMapper mapper) { _heroesRepository = heroesRepository; _mapper = mapper; }
public HeroesController(IHeroesRepository heroRepository, INotificationService notificationService) { this._notificationService = notificationService; this._heroRepository = heroRepository; }