Exemple #1
0
 public MatchController(IMatchService matchService,
                        IControllerRequestResolver resolver,
                        IMatchMobileService matchMobileService)
 {
     _matchService       = matchService;
     _resolver           = resolver;
     _matchMobileService = matchMobileService;
 }
Exemple #2
0
 public PlayerController(IPlayerService playerService,
                         IPlayerMobileService playerMobileService,
                         IControllerRequestResolver resolver)
 {
     _playerService       = playerService;
     _playerMobileService = playerMobileService;
     _resolver            = resolver;
 }