public ArticlesController(IMapper mapper, MyPlaceDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Beispiel #2
0
 public UsersController(MyPlaceDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CategoriesController(IMapper mapper, MyPlaceDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }