Exemplo n.º 1
0
 public int AddWishListItems(wishListItem item)
 {
     try
     {
         int id = _repository.AddWishListItems(item);
         return(id);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }