I have class within class
public class List
{
public int RecordCount { get; set; }
public IEnumerable ServiceElement { get; set; }
}
public class ServiceElementItem
{
public int ServiceElementId { get; set; }
public string ServiceElementBusinessId { get; set; }
public string Description { get; set; }
public string CustomerName { get; set; }
public string SiteName { get; set; }
public string Location { get; set; }
}
And this should return back:
RecordCount: 1
ServiceElements:
[
1]0:
{
ServiceElementId: 1
ServiceElementBusinessId: "TEST"
Description: "Direct"
AlternateId: "12345"
CustomerName: "TEST CUSTOMER"
SiteName: "TEST SITE"
}
but it is returning back
RecordCount: 1
ServiceElements:null
How can i solve this in c#
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sudhansu Sekhar PrustyPosted Mar 24, 2015, 6:33 AM
//Constructor
public List()
{
this.RecordCount = 1;
this.ServiceElements = new
}