public void AddToWishList(int productId, int customerId) { _wishListRepo.AddToWishList(productId, customerId); }
public void AddToWishList(int id, string _id) { _wishListRepo.AddToWishList(id, _id); }
public void AddToWishList(BookListViewModel book, WishList user) { _wishListRepo.AddToWishList(book, user); }