Пример #1
0
 public WishListController(
     IWishListSessionService wishListSessionService,
     IWishListService wishListService,
     IProductService productService)
 {
     _wishListSessionService = wishListSessionService;
     _wishListService        = wishListService;
     _productService         = productService;
 }
Пример #2
0
 public WishListSummary(IWishListSessionService wishListSessionService)
 {
     _wishListSessionService = wishListSessionService;
 }