예제 #1
0
 public MoviesController(IMoviesService service, ISideBarService sidebarService, IMovieGenresService movieGenresService, ILogService logService)
 {
     _moviesService      = service;
     _sidebarService     = sidebarService;
     _movieGenresService = movieGenresService;
     _logService         = logService;
 }
예제 #2
0
 public MoviesService(IMoviesRepository moviesRepository, IUserRepository userRepository, ICommentsRepository commentsRepository, IMovieGenresService movieGenresService, ILogService logService)
 {
     _moviesRepository   = moviesRepository;
     _userRepository     = userRepository;
     _commentsRepository = commentsRepository;
     _movieGenresService = movieGenresService;
     _logService         = logService;
 }
 public MovieGenreController(IMovieGenresService movieGenreService)
 {
     _MovieGenreService = movieGenreService;
 }