public bool Bind(int entityId, int associatedEntityId) => _inverseDao.Bind(associatedEntityId, entityId);
 public bool BindToUser(int awardId, int userId) => _associationsDao.Bind(awardId, userId);
 public bool AddRoleToUser(int userId, int roleId) => _userRoleAssociationsDao.Bind(userId, roleId);
 public bool BindToAward(int userId, int awardId) => _associationsDao.Bind(userId, awardId);