コード例 #1
0
 public static PersonFunctionDTO FromRoleEntity(RelationPersonPlayRole relation)
 {
     return(new PersonFunctionDTO()
     {
         PersonId = relation.PersonId,
         FirstName = relation.Person.FirstName,
         LastName = relation.Person.LastName,
         Role = relation.Role
     });
 }
コード例 #2
0
 public RelationPersonPlayRole UpdateRelationPersonPlayRole(RelationPersonPlayRole updateData)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public RelationPersonPlayRole AddRelationPersonPlayRole(RelationPersonPlayRole newRelationPersonPlayRole)
 {
     throw new NotImplementedException();
 }