I've a web application and a service layer running in different places and both have their own business entities, means both have their own classes to represent an employee, order etc (ex. Emp in service layer and Employee in web app). When the web application invokes the service layer to get a list of employees I want to transform the list of employees returned by service to the list of web application's employee type.
I'm looking for a way to do this easily. Any ideas will be great. By the way I'm using ASP.NET and WCF.