public MailService(IOptions <AppSettings> options, ILogger <MailService> logger) { DependencyHelper.ThrowIfNull(options, logger); _appSettings = options.Value; _logger = logger; }
public SlideService(ISlideRepository slideRepository, IMapper mapper) { DependencyHelper.ThrowIfNull(mapper, slideRepository); _slideRepository = slideRepository; _mapper = mapper; }
public AccountRepository(IOptions <AppSettings> config, IMapper mapper) : base(config) { DependencyHelper.ThrowIfNull(config, mapper); _appSettings = config.Value; _mapper = mapper; }
public JwtMiddleware(RequestDelegate next, IOptions <AppSettings> appSettings) { DependencyHelper.ThrowIfNull(next, appSettings); _next = next; _appSettings = appSettings.Value; }
public PresentationService(IPresentationRepository presentationRepository, IMapper mapper) { DependencyHelper.ThrowIfNull(presentationRepository, mapper); _presentationRepository = presentationRepository; _mapper = mapper; }
public PresentationController(IOptions <AppSettings> options, IPresentationService presentationService, ISlideService slideService) : base(options) { DependencyHelper.ThrowIfNull(presentationService, slideService); _presentationService = presentationService; _slideService = slideService; }
public UserService(IUserRepository userRepository, IMapper mapper, IOptions <AppSettings> options) { DependencyHelper.ThrowIfNull(userRepository, mapper, options); _userRepository = userRepository; _mapper = mapper; _appSettings = options.Value; }
public AccountService(IAccountRepository accountRepository, IOptions <AppSettings> options, IMapper mapper, IMailService mailService) { DependencyHelper.ThrowIfNull(accountRepository, options, mapper, mailService); _accountsRepository = accountRepository; _mailService = mailService; _appSettings = options.Value; _mapper = mapper; }
public OptionService( IMapper mapper, IOptionRepository optionRepository, IVotingHubClient votingHubClient, IVotingService votingService) { DependencyHelper.ThrowIfNull(mapper, optionRepository, votingHubClient, votingService); _mapper = mapper; _optionRepository = optionRepository; _votingHub = votingHubClient; _votingService = votingService; }
public SlideRepository(IOptions <AppSettings> config, IMapper mapper) : base(config) { DependencyHelper.ThrowIfNull(mapper); _mapper = mapper; }
public OptionController(IOptions <AppSettings> options, IOptionService optionService) : base(options) { DependencyHelper.ThrowIfNull(optionService); _optionService = optionService; }
public UserController(IOptions <AppSettings> options, IUserService userService) : base(options) { DependencyHelper.ThrowIfNull(userService); _userService = userService; }
public DeviceMiddleware(RequestDelegate next) { DependencyHelper.ThrowIfNull(next); _next = next; }
public BaseController(IOptions <AppSettings> options) { DependencyHelper.ThrowIfNull(options); _appSettings = options.Value; }
public VotingService(IHubContext <VotingHub> context) { DependencyHelper.ThrowIfNull(context); _context = context; }
public SlideController(IOptions <AppSettings> options, ISlideService slideService) : base(options) { DependencyHelper.ThrowIfNull(slideService); _slideService = slideService; }
public UserRepository(IOptions <AppSettings> options, IMapper mapper) : base(options) { DependencyHelper.ThrowIfNull(options, mapper); _mapper = mapper; }