C# 클래스 Altairis.Fakturoid.Client.FakturoidTodosProxy

Proxy class for working with todo tasks.
상속: FakturoidEntityProxy
파일 보기 프로젝트 열기: ridercz/Fakturoid-API

공개 메소드들

메소드 설명
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>