我有一个 StoreOwner 实体。StoreOwner 有一个 Store 属性。
public class Product { }
public class Store {
public IEnumerable<Product> Products { get; private set; }
}
public class StoreOwner {
public Store Store { get; private set }
}
我有以下用户故事:
作为店主,我可以将产品添加到我的商店。
“将产品添加到商店”的行为应该生活在哪里?在 StoreOwner 或 Store 上?
如果是商店,方法名称是什么?