public ReplayController(ReplaysIngestService ingestService, ReplaysProcessService processService, PostService postService, ILogger <ReplayController> logger) { _ingestService = ingestService; _processService = processService; _postService = postService; _logger = logger; }
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; }