The lists are represented by simple properties but I want to see the properties of the objects inside the lists.
short example:
Code: Select all
public class Client
{
private long id;
private string name;
private ClientContract contract;
public long Id
{
get{return id;}
set{id = value;}
}
public string Name
{
get{return name;}
set{name = value;}
}
public ClientContract Contract
{
get{return contract;}
set{contract = value;}
}
}
public class ClientContract
{
private long id;
private long number;
private List conditions;
public long Id
{
get{return id;}
set{id = value;}
}
public long Number
{
get{return number;}
set{number = value;}
}
public List Conditions
{
get{return conditions;}
set{conditions = value;}
}
}
public class PaymentConditions
{
private long id;
private DateTime creationDate;
private List papers;
public long Id
{
get{return id;}
set{id = value;}
}
public DateTime CreationDate
{
get{return creationDate;}
set{creationDate = value;}
}
public List Papers
{
get{return papers;}
set{papers = value;}
}
}
public class PaperType
{
....
}
...
...
...
//design report
...
report.RegData(new Client());
report.Design();
Thank you.