예제 #1
0
 public StudentDto(AccountDto account)
 {
     Account         = account;
     ForeignLanguage = new ForeignLanguage();
 }
예제 #2
0
 public TeacherDto(int id, string name)
 {
     Id      = id;
     Name    = name;
     Account = new AccountDto();
 }