コード例 #1
0
 public TaskController(
     TaskHandler taskHandler,
     IUserHandler userHandler,
     PlayerGameHandler pgh,
     PlayerTaskHandler pth,
     GameHandler gameHandler,
     GameTaskHandler gth
     )
 {
     this.taskHandler = taskHandler;
     this.userHandler = userHandler;
     this.pgh         = pgh;
     this.pth         = pth;
     this.gameHandler = gameHandler;
     this.gth         = gth;
 }
コード例 #2
0
 public VmController(
     GameHandler gameHandler,
     PlayerGameHandler pgh,
     GameTaskHandler gth,
     TaskHandler th,
     PlayerTaskHandler pth,
     AzureApi aapi,
     VirtualMachineHandler vmh,
     IUserHandler userHandler
     )
 {
     this.gameHandler = gameHandler;
     this.pgh         = pgh;
     this.gth         = gth;
     this.th          = th;
     this.pth         = pth;
     this.aapi        = aapi;
     this.vmh         = vmh;
     this.userHandler = userHandler;
 }