コード例 #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
ファイル: PostGroupController.cs プロジェクト: KreLou/BAGCST
 public PostGroupController(IPostGroupDB postGroupDB)
 {
     this.postGroupDB = postGroupDB;
 }
コード例 #3
0
ファイル: UserController.cs プロジェクト: KreLou/BAGCST
 public UserController(IUserDB userDB, IUserSettingsDB userSettingsDB, IPostGroupDB postGroupDB)
 {
     this.userDB         = userDB;
     this.userSettingsDB = userSettingsDB;
     this.postGroupDB    = postGroupDB;
 }
コード例 #4
0
ファイル: NewsController.cs プロジェクト: KreLou/BAGCST
 public NewsController(INewsDB newsDB, IPostGroupDB postGroupDB, IUserSettingsDB userrSettingsDB)
 {
     this.newsDB         = newsDB;
     this.postGroupDB    = postGroupDB;
     this.userSettingsDB = userrSettingsDB;
 }