Skip to content

Instantly share code, notes, and snippets.

@nrslib

nrslib/.cs Secret

Last active August 18, 2018 04:58
// 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