Im my DDD Aplication I have a lot of Domain Objects like date:
class User()
{
public String Name{get;set;}
}
The persistence of then already done!
Now im going to Client Side (SilverLight).
My problem is: how i work with a User object on Client Side.
Example:
// only a example
User user = Service.Login("crazyjoe","1234");
The User object do not exist on Client Side.
Question:
Have a clean and fast way to pass my User object to SilverLight??
Obs: clean = dont put anything on my User class.
-