public IHSchedulesController(IEmployeeService employeeService, IIceHockeySchedulesService ihService, IIceHockeyAllianceService ia, IIceHockeyTeamService it, IScoreModifyRecordService ismrs)
     : base(employeeService)
 {
     _IIceHockeySchedulesService = ihService;
     _IIceHockeyAllianceService = ia;
     _IIceHockeyTeamService = it;
     _ISMRService = ismrs;
 }
Example #2
0
 //
 // GET: /AmericanFootball/AFB/
 public AFBController(IAFBService afbService, IAFBAllianceService allianceService, IScoreModifyRecordService scoreModifyRecordService, ISourceTypeService sourceTypeService, IAFBTeamService afbTeamService, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IAFBService = afbService;
     _IAFBAllianceService = allianceService;
     _IScoreModifyRecordService = scoreModifyRecordService;
     _ISourceTypeService = sourceTypeService;
     _IAFBTeamService = afbTeamService;
 }
 public BBSchedulesController(IEmployeeService employeeService, IBaseballSchedulesService ibService, IBaseballAllianceService ia, IBaseballTeamService it, IScoreModifyRecordService ismrs)
     : base(employeeService)
 {
     _IBaseballSchedulesService = ibService;
     _IBaseballAllianceService = ia;
     _IBaseballTeamService = it;
     _ISMRService = ismrs;
     _user = employeeService.User;
 }
Example #4
0
 public BKOSController(IBKOSService bkosService, IScoreModifyRecordService scoreModifyRecordService, IBKOSAllianceService allianceService, IBKOSTeamService teamService, IOSTeamService osTeamService, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IBKOSService = bkosService;
     _IScoreModifyRecordService = scoreModifyRecordService;
     _IBKOSAllianceService = allianceService;
     _IBKOSTeamService = teamService;
     _IOSTeamService = osTeamService;
 }
Example #5
0
 public BasketBallController(IBasketballService basketballService, IBasketballAllianceService basketballAllianceService, IModifyRecordService ModifyRecordService, IBasketballTeamService BasketballTeamService, ISourceTypeService SourceTypeService, IScoreModifyRecordService ScoreModifyRecordService, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IBasketballService = basketballService;
     _IBasketballAllianceService = basketballAllianceService;
     _IModifyRecordService = ModifyRecordService;
     _IBasketballTeamService = BasketballTeamService;
     _ISourceTypeService = SourceTypeService;
     _IScoreModifyRecordService = ScoreModifyRecordService;
 }
Example #6
0
 public FootballController(IFootballService foolbalService, IEmployeeService employeeService, IScoreModifyRecordService ISMRService)
     : base(employeeService)
 {
     _IFoolballService = foolbalService;
     _ISMRService = ISMRService;
 }