예제 #1
0
 public ShoppingBagController(BikeShopDbContext context, IMapper mapper, UserManager <Customer> userManager)
 {
     _context     = context;
     _mapper      = mapper;
     _userManager = userManager;
 }
 public ProductsController(BikeShopDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }