/.cs Secret
Last active
August 18, 2018 04:58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// User の定義情報 | |
public class User { | |
// データベース等から読み取ったときに利用するコンストラクタ | |
public User(UserId userId, UserName username, FullName fullname); | |
// 生成するときのコンストラクタ(guid が設定される) | |
public User(UserName username, FullName fullname); | |
public bool IsDuplicated(User user); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment