示例#1
0
 public PlayersController(
     PlayersProcessor myPlaPro
     )
 {
     plaPro = myPlaPro;
 }
 public PlayersController(PlayersProcessor playersProcessor)
 {
     this.playersProcessor = playersProcessor;
 }
示例#3
0
 public PlayersController(PlayersProcessor processor)
 {
     _processor = processor;
 }
示例#4
0
 public PlayersController(PlayersProcessor pl)
 {
     plProcessor = pl;
 }
 public PlayersController(PlayersProcessor process)
 {
     this._process = process;
 }
示例#6
0
 public PlayerController(PlayersProcessor context)
 {
     _context = context;
 }
 public ScoresController(ScoresProcessor scores, PlayersProcessor players)
 {
     _processor = scores;
 }