public async Task <IEnumerable <CounterPointSalesDetails> > CounterPointSalesDetails(List <string> includesLst = null) { if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime) { return(new List <CounterPointSalesDetails>().AsEnumerable()); } try { using (var t = new CounterPointSalesDetailsClient()) { var res = await t.GetCounterPointSalesDetails(includesLst).ConfigureAwait(continueOnCapturedContext: false); if (res != null) { return(res.Select(x => new CounterPointSalesDetails(x)).AsEnumerable()); } else { return(null); } } } catch (FaultException <ValidationFault> e) { throw new Exception(e.Detail.Message, e.InnerException); } catch (Exception) { Debugger.Break(); throw; } }
public async Task <IEnumerable <CounterPointSalesDetails> > GetCounterPointSalesDetailsByExpressionNav(string exp, Dictionary <string, string> navExp, List <string> includesLst = null) { if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime || exp == null || exp == "None") { return(new List <CounterPointSalesDetails>().AsEnumerable()); } try { using (var t = new CounterPointSalesDetailsClient()) { IEnumerable <DTO.CounterPointSalesDetails> res = null; if (exp == "All" && navExp.Count == 0) { res = await t.GetCounterPointSalesDetails(includesLst).ConfigureAwait(continueOnCapturedContext: false); } else { res = await t.GetCounterPointSalesDetailsByExpressionNav(exp, navExp, includesLst).ConfigureAwait(continueOnCapturedContext: false); } if (res != null) { return(res.Select(x => new CounterPointSalesDetails(x)).AsEnumerable()); } else { return(null); } } } catch (FaultException <ValidationFault> e) { throw new Exception(e.Detail.Message, e.InnerException); } catch (Exception) { Debugger.Break(); throw; } }