Altairis.Fakturoid.Client.FakturoidTodosProxy.SelectAsync C# (CSharp) Method

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>
        public async Task<IEnumerable<JsonTodo>> SelectAsync(DateTime? since = null) {
            return await base.GetAllPagedEntitiesAsync<JsonTodo>("todos.json", new { since = since });
        }

Same methods

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