Example #1
0
 /// <summary>
 /// Removes the role from account for 'AccountRole' relationship.
 /// </summary>
 public void RemoveAccountFromRoleForAccountRole(int roleId, int accountId, IModelContext context = null)
 {
     changeHandler.BeforeRemoveAccountFromRoleForAccountRole(roleId, accountId, context);
     dal.RemoveAccountFromRoleForAccountRole(roleId, accountId, context);
     changeHandler.AfterRemoveAccountFromRoleForAccountRole(roleId, accountId, context);
 }