Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
0
 public PlayoffUserInfoController(IPlayoffPlayerInfoServices playerInfoServices, IPlayoffUserInfoServices userInfoServices, IConfigServices configServices) : base(configServices)
 {
     _userInfoServices   = userInfoServices;
     _playerInfoServices = playerInfoServices;
 }