public ProductController(IProductReprository rep, ICategoryRepository cat)
 {
     reprository = rep;
     crepository = cat;
 }
 public CarttControllers(IProductReprository rep)
 {
     reprository = rep;
 }
 public StoreController(IProductReprository pr, ICategoryRepository cr)
 {
     productRepositorty = pr;
     categoryRepository = cr;
 }
예제 #4
0
 public CartController(IProductReprository prep, IOrderRepository orep)
 {
     productRepository = prep;
     OrderRepository   = orep;
 }
 public OrderController(IProductReprository repp, IOrderRepository repo)
 {
     PRepositorty = repp;
     ORepository  = repo;
 }