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