Example #1
0
 public MusicController(IMusicService music, IReportService reportService, IMusicCommentService musicComment, IConfigInfoService configInfoService)
 {
     _music = music;
     _reportService = reportService;
     MusicCommentService = musicComment;
     _configInfoService = configInfoService;
 }
Example #2
0
 public GameController(IGameService game, IReportService reportService, IGameCommentService gameComment, IConfigInfoService configInfoService)
 {
     _game = game;
     _reportService = reportService;
     _gameComment = gameComment;
     _configInfoService = configInfoService;
 }
Example #3
0
 public ArticleController(IArticleService articleService, IActicleCommentService acticleCommentService, IReportService reportService, IConfigInfoService configInfoService)
 {
     _articleService = articleService;
     _acticleCommentService = acticleCommentService;
     _reportService = reportService;
     _configInfoService = configInfoService;
 }
Example #4
0
 public VideoController(IVideoCommentService comment, IVideoService video, IReportService report, IConfigInfoService configInfoService)
 {
     _comment = comment;
     _video = video;
     _report = report;
     _configInfoService = configInfoService;
 }
Example #5
0
 public TestController(IManageUsersService manageUsersBll, IArticleService articleService, IMusicService musicService, IVideoService videoService, IGameService gameService, IConfigInfoService configInfoService, IArticleImagesService articleImagesService)
 {
     _manageUsersBll = manageUsersBll;
     _articleService = articleService;
     _musicService = musicService;
     _videoService = videoService;
     _gameService = gameService;
     _configInfoService = configInfoService;
     _articleImagesService = articleImagesService;
 }
Example #6
0
 public ConfigInfoController(IConfigInfoService configInfoBll)
 {
     _configInfoBll = configInfoBll;
 }
Example #7
0
 static CommonHelper()
 {
     RolesBll = RegisterAutofacFroSingle.CurrentContainer.Resolve<IRolesService>();
     ConfigInfoBll = RegisterAutofacFroSingle.CurrentContainer.Resolve<IConfigInfoService>();
 }