Exemple #1
0
        ///// <summary>
        ///// For internal use
        ///// </summary>
        //internal PlayerInfoServices() { }

        public PlayoffPlayerInfoServices(UnitOfWork unitOfWork, IPastPlayerInfoServices pastPlayerInfoServices)
        {
            _unitOfWork             = unitOfWork;             //new UnitOfWork();
            _pastPlayerInfoServices = pastPlayerInfoServices; //new PastPlayerInfoServices();
            //_teamScheduleServices = new TeamScheduleServices();
            _caching = new Caching();
        }
 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;
 }
Exemple #3
0
 public NhlApiTransactions(IPlayerInfoServices playerInfoServices, IPastPlayerInfoServices pastPlayerInfoServices)
 {
     _playerInfoServices     = playerInfoServices;
     _pastPlayerInfoServices = pastPlayerInfoServices;
 }
Exemple #4
0
 public PlayoffUserInfoServices(UnitOfWork unitOfWork, IPastPlayerInfoServices pastPlayerInfoServices)
 {
     _unitOfWork             = unitOfWork;
     _caching                = new Caching();
     _pastPlayerInfoServices = pastPlayerInfoServices;
 }