Пример #1
0
 public Role_AppUserRoleMappingDTO(AppUserRoleMapping AppUserRoleMapping)
 {
     this.AppUserId = AppUserRoleMapping.AppUserId;
     this.RoleId    = AppUserRoleMapping.RoleId;
     this.AppUser   = AppUserRoleMapping.AppUser == null ? null : new Role_AppUserDTO(AppUserRoleMapping.AppUser);
 }
Пример #2
0
 public AppUser_AppUserRoleMappingDTO(AppUserRoleMapping AppUserRoleMapping)
 {
     this.AppUserId = AppUserRoleMapping.AppUserId;
     this.RoleId    = AppUserRoleMapping.RoleId;
     this.Role      = AppUserRoleMapping.Role == null ? null : new AppUser_RoleDTO(AppUserRoleMapping.Role);
 }