public AuthorsController(BookShelphDbContext context, IMapper mapper, IProcessFileUpload fileUpload)
 {
     _context    = context;
     _mapper     = mapper;
     _fileUpload = fileUpload;
 }
 public GendersController(BookShelphDbContext context)
 {
     _context = context;
 }
 public CategoriesController(BookShelphDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #4
0
 public LanguagesController(BookShelphDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #5
0
 public PublishersController(BookShelphDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #6
0
 public NarratorsController(BookShelphDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }