I have a WCF Service.
It returns the below type. I get the data in the first level but not any of the data in the nested lists... What could be my problem?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace slCF2.Web
{
public class Customer
{
string _firstname;
string _lastname;
List<BO> _bos;
List<AO> _aos;
public string FirstName
{
get { return _firstname; }
set { _firstname = value; }
}
public string LastName
{
get { return _lastname; }
set { _lastname = value; }
}
public System.Collections.Generic.List<AvailableOption> AvailableOptions
{
get { return _availableoptions; }
set { _availableoptions = value; }
}
public System.Collections.Generic.List<BuiltOption> BuiltOptions
{
get { return _builtoptions; }
set { _builtoptions = value; }
}
}
[Serializable]
public class AO
{
string _code;
public string Code
{
get { return _code; }
set { _code = value; }
}
}
[Serializable]
public class BO
{
string _code;
public string Code
{
get { return _code; }
set { _code = value; }
}
}
}