public bool Bind(int entityId, int associatedEntityId) => _inverseDao.Bind(associatedEntityId, entityId);
Ejemplo n.º 2
0
 public bool BindToUser(int awardId, int userId) => _associationsDao.Bind(awardId, userId);
Ejemplo n.º 3
0
 public bool AddRoleToUser(int userId, int roleId) => _userRoleAssociationsDao.Bind(userId, roleId);
Ejemplo n.º 4
0
 public bool BindToAward(int userId, int awardId) => _associationsDao.Bind(userId, awardId);