public CartController(ICartService cartService, IProductsSerivce productsService, IMapper mapper) { this.cartService = cartService; this.productsService = productsService; this.mapper = mapper; }
public ProductsController(IProductsSerivce productsService, IMapper mapper) { this.productsService = productsService; this.mapper = mapper; }
public CartService(ApplicationDbContext context, IProductsSerivce productsService, IUsersService usersService) { this.context = context; this.productsService = productsService; this.usersService = usersService; }