コード例 #1
0
 public CartController(InterfaceProductRepository repo, InterfaceOrderProcessor pro)
 {
     repository = repo;
     processor  = pro;
 }
コード例 #2
0
 public AdminController(InterfaceProductRepository repo)
 {
     repository = repo;
 }
コード例 #3
0
 public NavigationController(InterfaceProductRepository repo)
 {
     repository = repo;
 }