コード例 #1
0
 public bool UnBind(int entityId, int associatedEntityId) => _inverseDao.UnBind(associatedEntityId, entityId);
コード例 #2
0
 public bool UnBindFromUser(int awardId, int userId) => _associationsDao.UnBind(awardId, userId);
コード例 #3
0
ファイル: RolesManager.cs プロジェクト: CiberPoros/xt_net_web
 public bool RemoveRoleFromUser(int userId, int roleId) => _userRoleAssociationsDao.UnBind(userId, roleId);
コード例 #4
0
ファイル: UsersManager.cs プロジェクト: CiberPoros/xt_net_web
 public bool UnBindFromAward(int userId, int awardId) => _associationsDao.UnBind(userId, awardId);