Пример #1
0
 public MatchPlayersController(IMatchPlayerService matchPlayerService, ITransactedCaller executor) :
     base(executor)
 {
     _matchPlayerService = matchPlayerService;
 }
Пример #2
0
 public UsersController(IAuthenticationService authenticationService, IUserService userService, ITransactedCaller executor) : base(executor)
 {
     _authenticationService = authenticationService;
     _userService           = userService;
 }
Пример #3
0
 public TeamsController(ITeamService teamService, ITransactedCaller executor) : base(executor)
 {
     _teamService = teamService;
 }
Пример #4
0
 public MatchesController(IMatchService matchService, IMatchStatisticsService matchStatisticsService, ITransactedCaller executor) : base(executor)
 {
     _matchService           = matchService;
     _matchStatisticsService = matchStatisticsService;
 }
Пример #5
0
 public PlayerPointsController(IPlayerPointService playerPointService, ITransactedCaller executor) :
     base(executor)
 {
     _playerPointService = playerPointService;
 }
 public ControllerBaseCommand(ITransactedCaller executor)
 {
     _executor = executor;
 }