public async virtual Task <long> GetCountAsync(ICriterion filter)
        {
            var q = new OrganizationStructuresCountGetQuery();

            q.Filter = OrganizationStructureProxyUtils.GetFilterQueryValueString(filter);
            var req = new OrganizationStructuresCountGetRequest();

            req.Query = q;
            var resp = await _ramlClient.OrganizationStructuresCount.Get(req);

            OrganizationStructureProxyUtils.ThrowOnHttpResponseError(resp);
            return(long.Parse(await resp.RawContent.ReadAsStringAsync()));
        }
示例#2
0
        public async Task <IEnumerable <IOrganizationStructureState> > GetAsync(ICriterion filter, IList <string> orders = null, int firstResult = 0, int maxResults = int.MaxValue, IList <string> fields = null)
        {
            IEnumerable <IOrganizationStructureState> states = null;
            var q = new OrganizationStructuresGetQuery();

            q.FirstResult = firstResult;
            q.MaxResults  = maxResults;
            q.Sort        = OrganizationStructureProxyUtils.GetOrdersQueryValueString(orders);
            q.Fields      = OrganizationStructureProxyUtils.GetReturnedFieldsQueryValueString(fields, QueryFieldValueSeparator);
            q.Filter      = OrganizationStructureProxyUtils.GetFilterQueryValueString(filter);
            var req = new OrganizationStructuresGetRequest();

            req.Query = q;
            var resp = await _ramlClient.OrganizationStructures.Get(req);

            OrganizationStructureProxyUtils.ThrowOnHttpResponseError(resp);
            states = (resp.Content == null) ? null : resp.Content.Select(e => e.ToOrganizationStructureState());
            return(states);
        }
示例#3
0
        public async virtual Task <long> GetCountAsync(ICriterion filter)
        {
            var q = new OrganizationStructuresCountGetQuery();

            q.Filter = OrganizationStructureProxyUtils.GetFilterQueryValueString(filter);
            var req = new OrganizationStructuresCountGetRequest();

            req.Query = q;
            var resp = await _ramlClient.OrganizationStructuresCount.Get(req);

            OrganizationStructureProxyUtils.ThrowOnHttpResponseError(resp);
            string str = await resp.RawContent.ReadAsStringAsync();

            if (str.StartsWith("\""))
            {
                str = str.Substring(1);
            }
            if (str.EndsWith("\""))
            {
                str = str.Substring(0, str.Length - 1);
            }
            return(long.Parse(str));
        }