Ejemplo n.º 1
0
 public StreamingPlatform(IChatClient chatClient, IFollowerService followerService,
                          IStreamingInfoService streamingInfoService)
 {
     _chatClient           = chatClient;
     _followerService      = followerService;
     _streamingInfoService = streamingInfoService;
 }
Ejemplo n.º 2
0
 public StreamingSystem(IChatClient chatClient, IFollowerService followerService,
                        ICurrencyGenerator currencyGenerator, ISubscriberHandler subscriberHandler,
                        IStreamingInfoService streamingInfoService)
 {
     _chatClient           = chatClient;
     _followerService      = followerService;
     _currencyGenerator    = currencyGenerator;
     _subscriberHandler    = subscriberHandler;
     _streamingInfoService = streamingInfoService;
 }