コード例 #1
0
ファイル: MEController.cs プロジェクト: KreLou/BAGCST
 public MEController(IUserDB userDB, IGroupsDB groupsDB, TokenDecoderService tokenDecoder, IUserSettingsDB userSettingsDB, IPostGroupDB postGroupDB)
 {
     this.userDB         = userDB;
     this.groupsDB       = groupsDB;
     this.tokenDecoder   = tokenDecoder;
     this.userSettingsDB = userSettingsDB;
     this.postGroupDB    = postGroupDB;
 }
コード例 #2
0
 public TimetableController(IUserDB userDB, LectureService lectureService, TokenDecoderService tokenDecoderService)
 {
     this.userDB              = userDB;
     this.lectureService      = lectureService;
     this.tokenDecoderService = tokenDecoderService;
 }