エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
「ドメイン駆動設計入門 ボトムアップでわかる!ドメイン駆動設計の基本」をGoでやる
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
「ドメイン駆動設計入門 ボトムアップでわかる!ドメイン駆動設計の基本」をGoでやる
type VO string func newVO(val string) (*Name, error) { vo := VO(val) return &vo, nil } type Money... type VO string func newVO(val string) (*Name, error) { vo := VO(val) return &vo, nil } type Money struct { amount int currency string } func newMoney(amount int, currency string) (*Money, error) { if currency == "" { return nil, errors.New("currency is need") } return &Money{ amount: amount, currency: currency, }, nil } func (baseMoney *Money) add(addMoney *Money) (*Money, error) { if baseMoney.cu