Beispiel #1
0
        public async Task <IEnumerable <IContactMechState> > GetAsync(ICriterion filter, IList <string> orders = null, int firstResult = 0, int maxResults = int.MaxValue, IList <string> fields = null)
        {
            IEnumerable <IContactMechState> states = null;
            var q = new ContactMechesGetQuery();

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

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

            ContactMechProxyUtils.ThrowOnHttpResponseError(resp);
            states = (resp.Content == null) ? null : resp.Content.Select(e => e.ToContactMechState());
            return(states);
        }
Beispiel #2
0
        public async virtual Task <long> GetCountAsync(ICriterion filter)
        {
            var q = new ContactMechesCountGetQuery();

            q.Filter = ContactMechProxyUtils.GetFilterQueryValueString(filter);
            var req = new ContactMechesCountGetRequest();

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

            ContactMechProxyUtils.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));
        }