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

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

Same methods

FakturoidTodosProxy::Select ( int page, System.DateTime since = null ) : IEnumerable