public void FilterData(StringBuilder res = null) { if (DisableBaseFilterData) { return; } if (res == null) { res = GetAutoPropertyFilterString(); } if (res.Length == 0 && vloader.NavigationExpression.Count != 0) { res.Append("&& All"); } if (res.Length > 0) { vloader.FilterExpression = res.ToString().Trim().Substring(2).Trim(); } else { if (vloader.FilterExpression != "All") { vloader.FilterExpression = null; } } CounterPointPODetails.Refresh(); NotifyPropertyChanged(x => this.CounterPointPODetails); }
public async Task <CounterPointPODetails> CreateCounterPointPODetails(CounterPointPODetails entity) { return(await Channel.CreateCounterPointPODetails(entity).ConfigureAwait(false)); }