Example #1
0
 public MoviesController(IMoviesService moviesService,
                         IMoviesCategoriesService mvService,
                         IRenderService renderService)
 {
     this._moviesService           = moviesService;
     this._moviesCategoriesService = mvService;
     this._renderService           = renderService;
 }
Example #2
0
 public MoviesService(IRepository <Movie> repository,
                      IMoviesCategoriesService moviesCategoriesService,
                      IMoviesActorsService moviesActorsService)
 {
     this._repository = repository;
     this._moviesCategoriesService = moviesCategoriesService;
     this._moviesActorsService     = moviesActorsService;
 }
Example #3
0
 public CategoriesController(ICategoryService service,
                             IMoviesCategoriesService mvService)
 {
     this._categoryService         = service;
     this._moviesCategoriesService = mvService;
 }