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