1
Reply

c# how can return value from class?

kris

kris

Mar 24 2015 6:23 AM
487
I have class within class
 
public class List
{
public int RecordCount { get; set; }
public IEnumerable<ServiceElementItem> 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# 
                                       
 

Answers (1)