public MoviesController(IMovieService movieService, ITagService tagService, IMovieTagService movieTagService, IProjectionService projectionService)
 {
     _movieService       = movieService;
     _tagService         = tagService;
     _movieTagService    = movieTagService;
     _projectionsService = projectionService;
 }
Example #2
0
 public MovieTagsController(IMovieTagService movieTagService)
 {
     _movieTagService = movieTagService;
 }
Example #3
0
 public TagsController(ITagService tagService, IMovieTagService movieTagService)
 {
     _tagService      = tagService;
     _movieTagService = movieTagService;
 }
 public MovieService(IMoviesRepository moviesRepository, IProjectionService projectionService, IMovieTagService movieTagService)
 {
     _moviesRepository  = moviesRepository;
     _projectionService = projectionService;
     _movieTagService   = movieTagService;
 }
 public TagService(ITagsRepository tagsRepository, IMovieTagService movieTagService)
 {
     _tagsRepository  = tagsRepository;
     _movieTagService = movieTagService;
 }