C# Class Altairis.Fakturoid.Client.FakturoidTodosProxy

Proxy class for working with todo tasks.
Inheritance: FakturoidEntityProxy
Afficher le fichier Open project: ridercz/Fakturoid-API

Méthodes publiques

Méthode 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

Méthode Description
FakturoidTodosProxy ( FakturoidContext context ) : System

Method Details

Select() public méthode

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.
Résultat IEnumerable

Select() public méthode

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.
Résultat IEnumerable

SelectAsync() public méthode

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.
Résultat Task>

SelectAsync() public méthode

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.
Résultat Task>