//I have two class one defination and other attributes.
public class names
{
int id;
string name;
}
public class address
{
string address1;
string address2;
}
//I need to implement this for one employee and mutliple address
// can please provide logic and example