Пример #1
0
 public LibraryController(IMovieLibraryService movieLibraryService)
 {
     _movieLibraryService = movieLibraryService;
 }
 public FamousMoviesViewComponent(IMovieLibraryService movieLibraryService)
 {
     _movieLibraryService = movieLibraryService;
 }
Пример #3
0
 public DirectorsController(IMovieLibraryService movieLibraryService)
 {
     _movieLibraryService = movieLibraryService;
 }
Пример #4
0
 public ShoppingCartController(IMovieLibraryService movieLibraryService, MovieContext context, IShoppingCartService shoppingCartService)
 {
     _movieLibraryService = movieLibraryService;
     _context = context;
     _shoppingCartService = shoppingCartService;
 }
Пример #5
0
 public CategorySidebarViewComponent(IMovieLibraryService movieLibraryService)
 {
     _movieLibraryService = movieLibraryService;
 }