C# Класс Altairis.Fakturoid.Client.FakturoidTodosProxy

Proxy class for working with todo tasks.
Наследование: FakturoidEntityProxy
Показать файл Открыть проект

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
FakturoidTodosProxy ( FakturoidContext context ) : System

Описание методов

Select() публичный Метод

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.
Результат IEnumerable

Select() публичный Метод

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.
Результат IEnumerable

SelectAsync() публичный Метод

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.
Результат Task>

SelectAsync() публичный Метод

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.
Результат Task>