Exemplo n.º 1
0
 public GameMatchModelSelectLogic(IGameTeamSelect gameTeamSelect,
                                  IPersonSelect personSelect,
                                  ITeamPlayersSelect teamPlayersSelect)
 {
     _gameTeamSelect    = gameTeamSelect;
     _personSelect      = personSelect;
     _teamPlayersSelect = teamPlayersSelect;
 }
Exemplo n.º 2
0
 public GameModelDetailLogic(IGameTeamSelect gameTeamSelect,
                             IPersonSelect personSelect,
                             ICaptainSelect captainSelect)
 {
     _gameTeamSelect = gameTeamSelect;
     _personSelect   = personSelect;
     _captainSelect  = captainSelect;
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
0
 public PlayerMatchModelSelect(IPersonSelect personSelect,
                               IGameMatchModelSelectLogic gameMatchModelSelectLogic)
 {
     _personSelect = personSelect;
     _gameMatchModelSelectLogic = gameMatchModelSelectLogic;
 }
Exemplo n.º 5
0
 public GetCoachModelLogic(ITeamSelectLogic teamSelectLogic,
                           IPersonSelect personSelect)
 {
     _teamSelectLogic = teamSelectLogic;
     _personSelect    = personSelect;
 }
Exemplo n.º 6
0
 public TeamModelListByDivisionLogic(IPersonSelect personSelect)
 {
     _personSelect = personSelect;
 }