Posted on: 11/20/2013 4:03:01 AM | Views : 254

Hi there,
I have an existing codebase which is pretty poor. I have the need to persist a list of objects client side, but the details are populated server side.
eg: MyProductIds list that cna be stored clientside (and modified) kind of like a shopping cart, but then on certain pages this list of numbers will need to be fleshed out with details... like "The Add to products" will just need the List and the Id, but the "Show me my products" will need to get details like name, description, link to image etc...
The existing code has a class that is "product" that contains the following key bits (amongst other things):
the productID and a delegate that calls a webservice that reads "select * from products where productid = @productid"
This is proving problematic in just about every aspect, so I'm thinking of removing the delegate and populating the list<class> some other way, but I just wanted to run ...

Go to the complete details ...