public UserController(
     IHostingEnvironment hostingEnvironment,
     IMatchCreatorService matchCreatorService)
 {
     _hostingEnvironment  = hostingEnvironment;
     _matchCreatorService = matchCreatorService;
 }
 public TimedHostedService(
     ILogger <TimedHostedService> logger,
     IMatchCreatorService matchCreatorService,
     IHostingEnvironment hostingEnvironment)
 {
     _logger = logger;
     _matchCreatorService = matchCreatorService;
     _hostingEnvironment  = hostingEnvironment;
 }
Exemplo n.º 3
0
 public HomeController(IMatchCreatorService matchCreatorService)
 {
     _matchCreatorService = matchCreatorService;
 }