示例#1
0
 public NavController(Domain.Abstract.IProductRepository repo)
 {
     _productRepository = repo;
 }
 public CartController(Domain.Abstract.IProductRepository repo, Domain.Abstract.IOrderProcessor op)
 {
     _productRepository = repo;
     _orderProcessor    = op;
 }
示例#3
0
 public ProductsController(Domain.Abstract.IProductRepository productRepository)
 {
     _productRepository = productRepository;
 }
示例#4
0
 public ProductController(Domain.Abstract.IProductRepository productRepository)
 {
     this.repository = productRepository;
 }