Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 public PostGroupController(IPostGroupDB postGroupDB)
 {
     this.postGroupDB = postGroupDB;
 }
Exemplo n.º 3
0
 public UserController(IUserDB userDB, IUserSettingsDB userSettingsDB, IPostGroupDB postGroupDB)
 {
     this.userDB         = userDB;
     this.userSettingsDB = userSettingsDB;
     this.postGroupDB    = postGroupDB;
 }
Exemplo n.º 4
0
 public NewsController(INewsDB newsDB, IPostGroupDB postGroupDB, IUserSettingsDB userrSettingsDB)
 {
     this.newsDB         = newsDB;
     this.postGroupDB    = postGroupDB;
     this.userSettingsDB = userrSettingsDB;
 }