public bool UnBind(int entityId, int associatedEntityId) => _inverseDao.UnBind(associatedEntityId, entityId);
Esempio n. 2
0
 public bool UnBindFromUser(int awardId, int userId) => _associationsDao.UnBind(awardId, userId);
Esempio n. 3
0
 public bool RemoveRoleFromUser(int userId, int roleId) => _userRoleAssociationsDao.UnBind(userId, roleId);
Esempio n. 4
0
 public bool UnBindFromAward(int userId, int awardId) => _associationsDao.UnBind(userId, awardId);