Rock.Model.FinancialPersonSavedAccountService.GetByPersonId C# (CSharp) Method

GetByPersonId() public method

Returns an queryable collection of saved accounts (Rock.Model.FinancialPersonSavedAccount by PersonId
public GetByPersonId ( int personId ) : IQueryable
personId int A representing the PersonId of the to retrieve saved accounts for.
return IQueryable
        public IQueryable<FinancialPersonSavedAccount> GetByPersonId(int personId)
        {
            return this.Queryable().Where( a => a.PersonAlias.PersonId == personId );
        }
FinancialPersonSavedAccountService