Beispiel #1
0
 public FilmsController(IFilmRepository filmRepository, IMapper mapper,
                        IBinaryResourcePathResolver resourcePathResolver)
 {
     this.mapper = mapper;
     this.resourcePathResolver = resourcePathResolver;
     this.filmRepository       = filmRepository;
 }
Beispiel #2
0
 public ImageController(IBinaryResourcePathResolver resourcePathResolver, IUserRepository userRepository,
                        IFilmRepository filmRepository)
 {
     this.resourcePathResolver = resourcePathResolver;
     this.userRepository       = userRepository;
     this.filmRepository       = filmRepository;
 }