Esempio n. 1
0
 public UserInfoController(IPlayerInfoServices playerInfoServices, IUserInfoServices userInfoServices,
                           IPoolLastYearServices poolLastYearServices, IConfigServices configServices) : base(configServices)
 {
     _userInfoServices     = userInfoServices;
     _playerInfoServices   = playerInfoServices;
     _poolLastYearServices = poolLastYearServices;
 }
Esempio n. 2
0
 public TasksController(
     IUserInfoServices userInfoServices, IPlayerInfoServices playerInfoServices,
     IPastPlayerInfoServices pastPlayerInfoServices, ITeamScheduleServices teamScheduleServices,
     IPlayoffUserInfoServices playoffUserInfoServices, IPlayoffPlayerInfoServices playoffPlayerInfoServices,
     IConfigServices configServices)
 {
     _userInfoServices          = userInfoServices;     //new UserInfoServices();
     _playerInfoServices        = playerInfoServices;   //new PlayerInfoServices();
     _pastPlayerInfoServices    = pastPlayerInfoServices;
     _teamScheduleServices      = teamScheduleServices; //new TeamScheduleServices();
     _configServices            = configServices;       //new ConfigServices();
     _playoffUserInfoServices   = playoffUserInfoServices;
     _playoffPlayerInfoServices = playoffPlayerInfoServices;
 }
Esempio n. 3
0
 public NhlApiTransactions(IPlayerInfoServices playerInfoServices, IPastPlayerInfoServices pastPlayerInfoServices)
 {
     _playerInfoServices     = playerInfoServices;
     _pastPlayerInfoServices = pastPlayerInfoServices;
 }
 public PlayerInfoController(IPlayerInfoServices playerInfoServices, IConfigServices configServices) : base(configServices)
 {
     _playerInfoServices = playerInfoServices;
 }