예제 #1
0
 public HostingHub(ChaosGameManager chaosGameManager, AppSettings appSettings)
 {
     this.chaosGameManager = chaosGameManager ?? throw new System.ArgumentNullException(nameof(chaosGameManager));
     this.appSettings      = appSettings ?? throw new System.ArgumentNullException(nameof(appSettings));
 }
예제 #2
0
 public VotingController(ChaosGameManager chaosGameManager)
 {
     this.chaosGameManager = chaosGameManager ?? throw new ArgumentNullException(nameof(chaosGameManager));
 }
예제 #3
0
 public VotingHub(ChaosGameManager chaosGameManager)
 {
     this.chaosGameManager = chaosGameManager ?? throw new System.ArgumentNullException(nameof(chaosGameManager));
 }