C# Class Altairis.Fakturoid.Client.FakturoidEventsProxy

Proxy class for working with events
Inheritance: FakturoidEntityProxy
Show file Open project: ridercz/Fakturoid-API

Public Methods

Method Description
Select ( System.DateTime since = null ) : IEnumerable

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.

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

Gets list of current events, paged by 15.

SelectAsync ( System.DateTime since = null ) : Task>

Gets asynchronously 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.

SelectAsync ( int page, System.DateTime since = null ) : Task>

Gets asynchronously list of current events, paged by 15.

Private Methods

Method Description
FakturoidEventsProxy ( FakturoidContext context ) : System

Method Details

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

Select() public method

Gets list of current events, paged by 15.
page;Page must be greater than zero.
public Select ( int page, System.DateTime since = null ) : IEnumerable
page int The page number.
since System.DateTime The date since when events are to be selected.
return IEnumerable

SelectAsync() public method

Gets asynchronously 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 SelectAsync ( System.DateTime since = null ) : Task>
since System.DateTime The date since when events are to be selected.
return Task>

SelectAsync() public method

Gets asynchronously list of current events, paged by 15.
page;Page must be greater than zero.
public SelectAsync ( int page, System.DateTime since = null ) : Task>
page int The page number.
since System.DateTime The date since when events are to be selected.
return Task>