WCF/webservice architecture question
- by M.R.
I have a requirement to create a webservice to expose certain items from a CMS as a web service, and I need some suggestions - the structure of the items is as such:
item
- field 1
- field 2
- field 3
- field 4
So, one would think that the class for this will be:
public class MyItem
{
public string ItemName { get; set; }
public…