コード例 #1
0
ファイル: AnotherEntity.cs プロジェクト: xchan14/asp-web-ddd
 public AnotherEntity(AnotherValueObject valueObject)
 {
     AnotherValueObject = valueObject;
 }
コード例 #2
0
        public AnotherEntity CreateWithValueObject(AnotherValueObject valueObject)
        {
            var entity = new AnotherEntity(valueObject);

            return(entity);
        }