Altairis.Fakturoid.Client.FakturoidSubjectsProxy.Select C# (CSharp) Method

Select() public method

Gets list of all subjects.
public Select ( string customId = null ) : IEnumerable
customId string The custom identifier used for filtering.
return IEnumerable
        public IEnumerable<JsonSubject> Select(string customId = null) {
            return base.GetAllPagedEntities<JsonSubject>("subjects.json", new { custom_id = customId });
        }

Same methods

FakturoidSubjectsProxy::Select ( int page ) : IEnumerable