Example #1
0
 public GameMatchModelSelectLogic(IGameTeamSelect gameTeamSelect,
                                  IPersonSelect personSelect,
                                  ITeamPlayersSelect teamPlayersSelect)
 {
     _gameTeamSelect    = gameTeamSelect;
     _personSelect      = personSelect;
     _teamPlayersSelect = teamPlayersSelect;
 }
Example #2
0
 public PlayerModelSaveLogic(IPlayerModelListLogic playerModelList,
                             IPlayerModelSelect playerModelSelect,
                             ICaptainSelect captainSelect,
                             IPlayerModelParse playerModelParse,
                             ITeamPlayersSelect teamPlayersSelect,
                             ICheckCaptainLogic checkCaptainLogic,
                             IPlayerModelInsertLogic insertPlayerModelLogic,
                             IUpdatePlayerModelLogic updatePlayerModelLogic,
                             IPlayerModelCheckLogic checkPlayerModelLogic,
                             IPersonSelect personSelect,
                             ITeamPlayersSaveLogic teamPlayersSaveLogic
                             )
 {
     _playerModelList        = playerModelList;
     _playerModelSelect      = playerModelSelect;
     _playerModelParse       = playerModelParse;
     _teamPlayersSelect      = teamPlayersSelect;
     _checkCaptainLogic      = checkCaptainLogic;
     _insertPlayerModelLogic = insertPlayerModelLogic;
     _updatePlayerModelLogic = updatePlayerModelLogic;
     _checkPlayerModelLogic  = checkPlayerModelLogic;
     _personSelect           = personSelect;
     _teamPlayersSaveLogic   = teamPlayersSaveLogic;
 }
Example #3
0
 public PlayerMatchController(IPlayerMatchModelSelect playerMatchModelSelect,
                              ITeamPlayersSelect teamPlayersSelect)
 {
     _playerMatchModelSelect = playerMatchModelSelect;
     _teamPlayersSelect      = teamPlayersSelect;
 }