public async Task <IEnumerable <IGoodIdentificationMvoState> > GetAsync(ICriterion filter, IList <string> orders = null, int firstResult = 0, int maxResults = int.MaxValue, IList <string> fields = null) { IEnumerable <IGoodIdentificationMvoState> states = null; var q = new GoodIdentificationMvosGetQuery(); q.FirstResult = firstResult; q.MaxResults = maxResults; q.Sort = GoodIdentificationMvoProxyUtils.GetOrdersQueryValueString(orders); q.Fields = GoodIdentificationMvoProxyUtils.GetReturnedFieldsQueryValueString(fields, QueryFieldValueSeparator); q.Filter = GoodIdentificationMvoProxyUtils.GetFilterQueryValueString(filter); var req = new GoodIdentificationMvosGetRequest(); req.Query = q; var resp = await _ramlClient.GoodIdentificationMvos.Get(req); GoodIdentificationMvoProxyUtils.ThrowOnHttpResponseError(resp); states = (resp.Content == null) ? null : resp.Content.Select(e => e.ToGoodIdentificationMvoState()); return(states); }
public async virtual Task <long> GetCountAsync(ICriterion filter) { var q = new GoodIdentificationMvosCountGetQuery(); q.Filter = GoodIdentificationMvoProxyUtils.GetFilterQueryValueString(filter); var req = new GoodIdentificationMvosCountGetRequest(); req.Query = q; var resp = await _ramlClient.GoodIdentificationMvosCount.Get(req); GoodIdentificationMvoProxyUtils.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)); }