I want to send a list, does anybody know whats wrong? I got following error:
Error 1 The type or namespace name 'List' could not be found (are you missing a using directive or an assembly reference?)
private Domain.Application.Person MapToApplicationPerson(List<Domain.Webservice.Person> wPer)
{
Domain.Application.Person aPer = new Domain.Application.Person();
aPer.Id = wPer.Id;
aPer.Number = wPer.Number;
return aPer;
} Regards,
Tom