Exemple #1
0
 /// <summary>
 /// Delete an item from the list
 /// </summary>
 /// <param name="userId">User Id</param>
 /// <param name="productId">Product Id</param>
 public void Delete(long userId, long productId)
 {
     _wishRepository.Delete(userId, productId);
 }