示例#1
0
 public ReplayController(ReplaysIngestService ingestService, ReplaysProcessService processService, PostService postService, ILogger <ReplayController> logger)
 {
     _ingestService  = ingestService;
     _processService = processService;
     _postService    = postService;
     _logger         = logger;
 }
示例#2
0
 public PostService(ApiDbContext context, PlayerService playerService, PostWebhookService webhookService, IHubContext <PostHub, IPostHubPush> postsHub,
                    NotificationService notificationService, ReplaysIngestService replayService)
 {
     this.context         = context;
     this.playerService   = playerService;
     this.webhookService  = webhookService;
     _postsHub            = postsHub;
     _notificationService = notificationService;
     _replayService       = replayService;
 }