示例#1
0
 public CartController(InterfaceProductRepository repo, InterfaceOrderProcessor pro)
 {
     repository = repo;
     processor  = pro;
 }
 public AdminController(InterfaceProductRepository repo)
 {
     repository = repo;
 }
 public NavigationController(InterfaceProductRepository repo)
 {
     repository = repo;
 }