public HostingHub(ChaosGameManager chaosGameManager, AppSettings appSettings) { this.chaosGameManager = chaosGameManager ?? throw new System.ArgumentNullException(nameof(chaosGameManager)); this.appSettings = appSettings ?? throw new System.ArgumentNullException(nameof(appSettings)); }
public VotingController(ChaosGameManager chaosGameManager) { this.chaosGameManager = chaosGameManager ?? throw new ArgumentNullException(nameof(chaosGameManager)); }
public VotingHub(ChaosGameManager chaosGameManager) { this.chaosGameManager = chaosGameManager ?? throw new System.ArgumentNullException(nameof(chaosGameManager)); }