Esempio n. 1
0
 public MainHeaderViewComponent(UserManager <MarketplaceUser> userManager, ICategoryService categoryService, IWishProductService wishProductService, IShoppingCartService shoppingCartService)
 {
     this.userManager         = userManager;
     this.categoryService     = categoryService;
     this.wishProductService  = wishProductService;
     this.shoppingCartService = shoppingCartService;
 }
Esempio n. 2
0
 public WishListController(IMapper mapper, UserManager <MarketplaceUser> userManager, IWishProductService wishProductService)
 {
     this.mapper             = mapper;
     this.userManager        = userManager;
     this.wishProductService = wishProductService;
 }