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