Is there a difference between a business object and an entity?
If I were to define a POCO type of class, say a Product class, would that be a business object or an entity?
public class Product {
public int ID { get; set; }
public string Name { get; set; }
public double Price { get; set; }
public string Sku { get; set; }
}
Note there is no functionality within this object.