Example #1
0
        public override JsStoreData LoadList(string entityType, int start, int limit, JsFilter[] filter, JsSorter[] sort, string structureName,
                                             JsWorkflowIdentity workflowIdentity, JsWorkflowInstanceIdentity workflowInstanceIdentity)
        {
            var structureDataProvider = StructureDataProviders[structureName];
            var loadListQuery         = QueryDeserializer.DeserializeListQuery(structureDataProvider.RecordStructure, start, limit, filter, sort);

            return(((IListDataLoader)structureDataProvider).LoadList(loadListQuery));
        }