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
 public bool RemoveRoleFromUser(int userId, int roleId) => _userRoleAssociationsDao.UnBind(userId, roleId);
예제 #4
0
 public bool UnBindFromAward(int userId, int awardId) => _associationsDao.UnBind(userId, awardId);