コード例 #1
0
ファイル: LogController.cs プロジェクト: chanhan/subao_bg
 public LogController(IAFBService afbService, IAFBAllianceService allianceService, IAFBTeamService afbTeamService, IEmployeeService employeeService)
     : base(employeeService)
 {
     _IAFBService = afbService;
     _IAFBAllianceService = allianceService;
     _IAFBTeamService = afbTeamService;
 }
コード例 #2
0
ファイル: AFBController.cs プロジェクト: chanhan/subao_bg
 //
 // 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;
 }