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で?
ストアの場合、メソッド名は何になりますか?