私は2つのクラスを持っています。
Employee (Model)
EmployeeInfo (Another Class)
//Employee GetEmployeeInfo(int empCode) (MethodName)
EmployeeInfo
クラスは型を返しますEmployee
。
では、とのrelationship
間は何ですか? (集約、構成、または関連付け?)Employee
EmployeeInfo
私の推測では、 の新しいインスタンスがEmployee
内に作成されますEmployeeInfo
。そのため、EmployeeInfo
クラス オブジェクトが死ぬと、 も死にますEmployee
。これは を意味しdeath relationship
ます。それで、関係はComposition
?
これが素朴な質問である場合は申し訳ありませんが、正しく理解できません。