Hi All,
i have a class,
[serviveContract]
public Class Employee
{
[operationContract]
public string Firstname{get;set;}
[operationContract]
public string LastName;
}
or u consider the normal class it is located in business entities console application
i am going to use this class to insert employee value and get the employee details
public Class Employee
{
public string Firstname{get;set;}
public string LastName;
}
my doubt is what is the exact differant between firstname & lastname