Altairis.Fakturoid.Client.FakturoidTodosProxy.Select C# (CSharp) 메소드

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
        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