public GenresService(NetPhlixDbContext dbContext, IMapper mapper)
 {
     this._dbContext = dbContext;
     this._mapper    = mapper;
 }
Exemple #2
0
 public GenresController(NetPhlixDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #3
0
 public CompaniesController(NetPhlixDbContext context, IMapper mapper, ICompaniesService companiesService)
 {
     this._context          = context;
     this._mapper           = mapper;
     this._companiesService = companiesService;
 }
 public PersonsController(NetPhlixDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemple #5
0
 public PeopleController(NetPhlixDbContext context, IMapper mapper)
 {
     this._context = context;
     this._mapper  = mapper;
 }
 public MoviesController(NetPhlixDbContext dbContext)
 {
     this._dbContext = dbContext;
 }