HI Billy,
what is the way to consuming wcf service and manage service objects with other entities?
Also, where place service objects, in task layer or in domain layer?
Eg, if Orders are taken from service how change the follow lines?
public class Customer : Entity
{
public Customer() {
Orders = new List();
}
public virtual IList Orders { get; protected set; }
I think I have to reference it in task layer, create DTO between objects and then pass the DTO into view. But I think i missed something
TY
Louis