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

Select() public method

Gets list of all current events.
The result may contain duplicate entities, if they are modified between requests for pages. In current version of API, there is no way to solve rhis.
public Select ( System.DateTime since = null ) : IEnumerable
since System.DateTime The date since when events are to be selected.
return IEnumerable
        public IEnumerable<JsonEvent> Select(DateTime? since = null) {
            return base.GetAllPagedEntities<JsonEvent>("events.json", new { since = since });
        }

Same methods

FakturoidEventsProxy::Select ( int page, System.DateTime since = null ) : IEnumerable