Example #1
0
 public ProductService(GetACamContext getACamContext, IRepository <Product> productRepository, IUnitOfWork unitOfWork, ICategoryService categoryService, IMapper mapper)
 {
     this.getACamContext    = getACamContext;
     this.productRepository = productRepository;
     this.unitOfWork        = unitOfWork;
     this.categoryService   = categoryService;
     this.mapper            = mapper;
 }
Example #2
0
 public ShoppingCart(GetACamContext getACamContext)
 {
     this.getACamContext = getACamContext;
 }