示例#1
0
        public ObjectiveResultAdminController(
            IObjectiveService objectiveService,
            IObjectiveResultService objectiveResultService,
            ITeamService teamService,
            IOrchardServices services)
        {
            this._objectiveService       = objectiveService;
            this._objectiveResultService = objectiveResultService;
            this._teamService            = teamService;

            this.Services = services;
            this.T        = NullLocalizer.Instance;
        }
示例#2
0
        public ScoreboardController(
            ITeamService teamService,
            IGameService gameService,
            IObjectiveService objectiveService,
            IObjectiveResultService objectiveResultService,
            IOrchardServices orchardServices)
        {
            this._teamService            = teamService;
            this._gameService            = gameService;
            this._objectiveService       = objectiveService;
            this._objectiveResultService = objectiveResultService;

            Services = orchardServices;
            T        = NullLocalizer.Instance;
        }