Work with multiple items
var user1 = new User()
{
Username = "imperugo",
Firstname = "Ugo",
Lastname = "Lattanzi",
Twitter = "@imperugo"
Blog = "http://tostring.it",
Company = new Company
{
Name = "My Super Company",
Vat = "IT12345678911",
Address = "somewhere road 12"
}
}
var user2 = new User()
{
Username = "mario.rossi",
Firstname = "Mario",
Lastname = "Rossi",
Twitter = "@mariorossi"
Blog = "http://imperugo.tostring.it/",
Company = new Company
{
Name = "My Super Company",
Vat = "IT12345678911",
Address = "somewhere road 12"
}
}Last updated