public PlayListVideoController(IPlayListService playListService, IDetailVideoService detail,
                                IVideoService videoService)
 {
     _playlistService = playListService;
     _detailService   = detail;
     _videoService    = videoService;
 }
Example #2
0
 public VideoWatchedController(IVideoWatchedService video, IVideoService videoService
                               , IUserService userService, INotificationService notificationService,
                               IPlayListService playlist)
 {
     _videoWatched        = video;
     _videoService        = videoService;
     _userService         = userService;
     _notificationService = notificationService;
     _playListService     = playlist;
 }
 public VideoController(IVideoService videoService, IUserService userService,
                        ICategoryService category, IFollowChannelService channelService, ILikeVideoService likeservice,
                        IFollowChannelService followChannel, ICommentService commentService,
                        INotificationService notification, IVideoWatchedService videoWatched,
                        IPlayListService playList, IDetailVideoService detail)
 {
     _videoService        = videoService;
     _userService         = userService;
     _categoryService     = category;
     _channelService      = channelService;
     _likeService         = likeservice;
     _followChannel       = followChannel;
     _commentService      = commentService;
     _notificationService = notification;
     _videoWatched        = videoWatched;
     _playListService     = playList;
     _detailService       = detail;
 }
 public HomeController(UserManager <AppUser> userManager,
                       SignInManager <AppUser> signInManager,
                       IUserService userService, IVideoService videoService,
                       ICommentService commentService, ILikeVideoService likeVideo,
                       IFollowChannelService channelService, ICategoryService categoryService,
                       IPlayListService playListService, IDetailVideoService detailVideo,
                       INotificationService notificationService, IUserApiCient userApiClient
                       )
 {
     _userManager         = userManager;
     _signInManager       = signInManager;
     _videoService        = videoService;
     _userService         = userService;
     _commentService      = commentService;
     _likeVideo           = likeVideo;
     _channelService      = channelService;
     _categoryService     = categoryService;
     _playListService     = playListService;
     _detaivideo          = detailVideo;
     _notificationService = notificationService;
     _userApiClient       = userApiClient;
 }
Example #5
0
 public PlayListController(IPlayListService playListService, IMapper mapper)
 {
     _playListService = playListService;
     _mapper          = mapper;
 }
Example #6
0
 public ResultController(IPlayListService playListService)
 {
     _playListService = playListService;
 }
Example #7
0
 public PlayListController(IPlayListService service)
 {
     _service = service;
 }
Example #8
0
 public PlayListMusicController(IPlayListService playListService)
 {
     _playListService = playListService;
 }
 public PlayListController(IPlayListService _playListServ)
 {
     this.playListService = _playListServ;
 }
Example #10
0
 public TrackController(ITrackService service, IPlayListService playList)
 {
     _service  = service;
     _playList = playList;
 }