Exemplo n.º 1
0
 public FilmsController(AkimediaDbContext context, IMapper mapper, ILogger <FilmsController> logger, IHostingEnvironment host)
 {
     this.logger  = logger;
     this.host    = host;
     this.mapper  = mapper;
     this.context = context;
 }
 public FilmDirectorsController(
     AkimediaDbContext context,
     IMapper mapper,
     IHostingEnvironment host
     )
 {
     this.mapper  = mapper;
     this.host    = host;
     this.context = context;
 }
 public GenresController(AkimediaDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }