Ejemplo n.º 1
0
 public async Task <decimal> SumNav(string whereExp, Dictionary <string, string> navExp, string sumExp)
 {
     try
     {
         using (var t = new PreviousItemsExClient())
         {
             return(await t.SumNav(whereExp, navExp, sumExp).ConfigureAwait(false));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Ejemplo n.º 2
0
 public decimal SumField(string whereExp, string sumExp)
 {
     try
     {
         using (var t = new PreviousItemsExClient())
         {
             return(t.SumField(whereExp, sumExp));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Ejemplo n.º 3
0
 public async Task <bool> DeletePreviousItemsEx(string id)
 {
     try
     {
         using (var t = new PreviousItemsExClient())
         {
             return(await t.DeletePreviousItemsEx(id).ConfigureAwait(continueOnCapturedContext: false));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Ejemplo n.º 4
0
 public async Task <PreviousItemsEx> CreatePreviousItemsEx(PreviousItemsEx entity)
 {
     try
     {
         using (var t = new PreviousItemsExClient())
         {
             return(new PreviousItemsEx(await t.CreatePreviousItemsEx(entity.DTO).ConfigureAwait(continueOnCapturedContext: false)));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Ejemplo n.º 5
0
        //Virtural List Implementation

        public async Task <Tuple <IEnumerable <PreviousItemsEx>, int> > LoadRange(int startIndex, int count, string exp, Dictionary <string, string> navExp, IEnumerable <string> includeLst = null)
        {
            var overallCount = 0;

            if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime || exp == null || exp == "None")
            {
                return(new Tuple <IEnumerable <PreviousItemsEx>, int>(new List <PreviousItemsEx>().AsEnumerable(), overallCount));
            }

            try
            {
                using (var t = new PreviousItemsExClient())
                {
                    IEnumerable <DTO.PreviousItemsEx> res = null;

                    res = await t.LoadRangeNav(startIndex, count, exp, navExp, includeLst).ConfigureAwait(continueOnCapturedContext: false);

                    overallCount = await t.CountNav(exp, navExp).ConfigureAwait(continueOnCapturedContext: false);



                    if (res != null)
                    {
                        return(new Tuple <IEnumerable <PreviousItemsEx>, int>(res.Select(x => new PreviousItemsEx(x)).AsEnumerable(), overallCount));
                    }
                    else
                    {
                        return(null);
                    }
                }
            }
            catch (FaultException <ValidationFault> e)
            {
                throw new Exception(e.Detail.Message, e.InnerException);
            }
            catch (Exception)
            {
                Debugger.Break();
                throw;
            }
        }
Ejemplo n.º 6
0
        public async Task <IEnumerable <PreviousItemsEx> > GetPreviousItemsExesByExpression(string exp, List <string> includesLst = null)
        {
            if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime || exp == null || exp == "None")
            {
                return(new List <PreviousItemsEx>().AsEnumerable());
            }
            try
            {
                using (var t = new PreviousItemsExClient())
                {
                    IEnumerable <DTO.PreviousItemsEx> res = null;
                    if (exp == "All")
                    {
                        res = await t.GetPreviousItemsExes(includesLst).ConfigureAwait(continueOnCapturedContext: false);
                    }
                    else
                    {
                        res = await t.GetPreviousItemsExesByExpression(exp, includesLst).ConfigureAwait(continueOnCapturedContext: false);
                    }

                    if (res != null)
                    {
                        return(res.Select(x => new PreviousItemsEx(x)).AsEnumerable());
                    }
                    else
                    {
                        return(null);
                    }
                }
            }
            catch (FaultException <ValidationFault> e)
            {
                throw new Exception(e.Detail.Message, e.InnerException);
            }
            catch (Exception)
            {
                Debugger.Break();
                throw;
            }
        }
Ejemplo n.º 7
0
        public async Task <PreviousItemsEx> UpdatePreviousItemsEx(PreviousItemsEx entity)
        {
            if (entity == null)
            {
                return(entity);
            }
            var entitychanges = entity.ChangeTracker.GetChanges().FirstOrDefault();

            if (entitychanges != null)
            {
                try
                {
                    using (var t = new PreviousItemsExClient())
                    {
                        var updatedEntity = await t.UpdatePreviousItemsEx(entitychanges).ConfigureAwait(false);

                        entity.EntityId = updatedEntity.EntityId;
                        entity.DTO.AcceptChanges();
                        //var  = entity.;
                        //entity.ChangeTracker.MergeChanges(,updatedEntity);
                        //entity. = ;
                        return(entity);
                    }
                }
                catch (FaultException <ValidationFault> e)
                {
                    throw new Exception(e.Detail.Message, e.InnerException);
                }
                catch (Exception)
                {
                    Debugger.Break();
                    throw;
                }
            }
            else
            {
                return(entity);
            }
        }