public class Customers
{
private int
_intCustomerID;
private string
_strFirstName;
private string
_strAddress;
private string
_strDesignation;
public int CustomerID
{
get
{
return _intCustomerID;
}
set
{
_intCustomerID = value;
}
}
public string
FirstName
{
get
{
return _strFirstName;
}
set
{
_strFirstName = value;
}
}
public string Address
{
get
{
return _strAddress;
}
set
{
_strAddress
= value;
}
}
public string
Designation
{
get
{
return _strDesignation;
}
set
{
_strDesignation = value;
}
}
}
Step 2:- Create your web service
The next step is we need to create the web service
which exposes the customer class to our UI. Below is a simple web service which
has encapsulated customer collection. In the constructor we are loading some
dummy data in to the list of customer as shown in the below code snippet.
[System.Web.Script.Services.ScriptService]
public class Customer : System.Web.Services.WebService
{
// Customer collection
List<Customers> listcust = new List<Customers>();
public Customer()
{
//Load some dummy data in to customer collection.
listcust.Clear();
Customers cust
= new Customers();
cust.CustomerID
= 1;
cust.FirstName
= "Taha";
cust.Address = "Live in India";
cust.Designation = "Software
Developer";
listcust.Add(cust);
cust = new Customers();
cust.CustomerID
= 2;
cust.FirstName
= "Shyam";
cust.Address = "Live in Austrailia";
cust.Designation = "Web Designer";
listcust.Add(cust);
cust = new Customers();
cust.CustomerID
= 3;
cust.FirstName
= "Khadak";
cust.Address = "Live in London";
cust.Designation = "Architect";
listcust.Add(cust);
}