public bool IsInRole(AccountRole role) { return(_roles.Matches(role)); }
public bool Matches(AccountRole other) { return(RoleName == other.RoleName); }