C# Class Altairis.Fakturoid.Client.FakturoidTodosProxy

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

Public Methods

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

Gets list of all current todos.

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 paged list of current todos

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

Gets asynchronously list of all current todos.

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 paged list of current todos

Private Methods

Method Description
FakturoidTodosProxy ( FakturoidContext context ) : System

Method Details

Select() public method

Gets list of all current todos.
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 todos are to be selected.
return IEnumerable

Select() public method

Gets paged list of current todos
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 todos are to be selected.
return IEnumerable

SelectAsync() public method

Gets asynchronously list of all current todos.
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 todos are to be selected.
return Task>

SelectAsync() public method

Gets asynchronously paged list of current todos
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 todos are to be selected.
return Task>