예제 #1
0
 public VideoController(IVideoCommentService comment, IVideoService video, IReportService report, IConfigInfoService configInfoService)
 {
     _comment = comment;
     _video = video;
     _report = report;
     _configInfoService = configInfoService;
 }
 public VideoCommentController(IVideoCommentService articleCommentService, UserManager <ApplicationUser> userManager)
 {
     this.videoCommentService = articleCommentService;
     this.userManager         = userManager;
 }
예제 #3
0
 public VideoController(IVideoService musicBll, IVideoCommentService videoCommentService)
 {
     _videoBll = musicBll;
     _videoCommentService = videoCommentService;
 }