Beispiel #1
0
 public async Task<TariffCategory> GetTariffCategory(string id, List<string> includesLst = null)
 {
      try
      {   
          using (var t = new TariffCategoryClient())
             {
                 var res = await t.GetTariffCategoryByKey(id,includesLst).ConfigureAwait(continueOnCapturedContext: false);
                  if(res != null)
                 {
                     return new TariffCategory(res)
             {
              // TariffCodes = new System.Collections.ObjectModel.ObservableCollection<TariffCodes>(res.TariffCodes.Select(y => new TariffCodes(y))),    
              // TariffCategoryCodeSuppUnit = new System.Collections.ObjectModel.ObservableCollection<TariffCategoryCodeSuppUnit>(res.TariffCategoryCodeSuppUnit.Select(y => new TariffCategoryCodeSuppUnit(y)))    
           };
             }
             else
             {
                 return null;
             }                    
         }
     }
     catch (FaultException<ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Beispiel #2
0
 public async Task<IEnumerable<TariffCategory>> TariffCategory(List<string> includesLst = null)
 {
     if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime) return new List<TariffCategory>().AsEnumerable();
     try
     {
         using (var t = new TariffCategoryClient())
             {
                 var res = await t.GetTariffCategory(includesLst).ConfigureAwait(continueOnCapturedContext: false);
                 if (res != null)
                 {
                     return res.Select(x => new TariffCategory(x)).AsEnumerable();
                 }
                 else
                 {
                     return null;
                 }                    
             }
     }
     catch (FaultException<ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Beispiel #3
0
 public async Task<bool> DeleteTariffCategory(string id)
 {
     try
     {
      using (var t = new TariffCategoryClient())
         {
             return await t.DeleteTariffCategory(id).ConfigureAwait(continueOnCapturedContext: false);
         }
     }
     catch (FaultException<ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }  
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }         
 }
Beispiel #4
0
 public async Task<TariffCategory> CreateTariffCategory(TariffCategory entity)
 {
     try
     {   
         using (var t = new TariffCategoryClient())
             {
                 return new TariffCategory(await t.CreateTariffCategory(entity.DTO).ConfigureAwait(continueOnCapturedContext: false));
             }
     }
     catch (FaultException<ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }
Beispiel #5
0
        public async Task<decimal> SumNav(string whereExp, Dictionary<string, string> navExp, string sumExp)
        {
            try
            {
                using (var t = new TariffCategoryClient())
                {
                    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;
            }

        }
Beispiel #6
0
		public decimal SumField(string whereExp, string sumExp)
        {
            try
            {
                using (var t = new TariffCategoryClient())
                {
                    return t.SumField(whereExp,sumExp);
                }
            }
            catch (FaultException<ValidationFault> e)
            {
                throw new Exception(e.Detail.Message, e.InnerException);
            }
            catch (Exception)
            {
                Debugger.Break();
                throw;
            }

        }
Beispiel #7
0
		//Virtural List Implementation

		public async Task<Tuple<IEnumerable<TariffCategory>, 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<TariffCategory>, int>(new List<TariffCategory>().AsEnumerable(), overallCount);
            }
            
            try
            {
                using (var t = new TariffCategoryClient())
                {

                    IEnumerable<DTO.TariffCategory> 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<TariffCategory>, int>(res.Select(x => new TariffCategory(x)).AsEnumerable(), overallCount);
                    }
                    else
                    {
                        return null;
                    }
                }
            }
            catch (FaultException<ValidationFault> e)
            {
                throw new Exception(e.Detail.Message, e.InnerException);
            }
            catch (Exception)
            {
                Debugger.Break();
                throw;
            }
        }
Beispiel #8
0
		 public async Task<IEnumerable<TariffCategory>> GetTariffCategoryByExpressionNav(string exp, Dictionary<string, string> navExp, List<string> includesLst = null)
        {
            if (System.ComponentModel.LicenseManager.UsageMode == LicenseUsageMode.Designtime || exp == null || exp == "None") return new List<TariffCategory>().AsEnumerable();
            try
            {
                using (var t = new TariffCategoryClient())
                    {
					    IEnumerable<DTO.TariffCategory> res = null;
                        if(exp == "All" && navExp.Count == 0)
                        {                       
						    res = await t.GetTariffCategory(includesLst).ConfigureAwait(continueOnCapturedContext: false);					
                        }
                        else
                        {
                             res = await t.GetTariffCategoryByExpressionNav(exp, navExp, includesLst).ConfigureAwait(continueOnCapturedContext: false);	                         
                        }
                    
                        if (res != null)
                        {
                            return res.Select(x => new TariffCategory(x)).AsEnumerable();
                        }
                        else
                        {
                            return null;
                        }                    
                    }
            }
            catch (FaultException<ValidationFault> e)
            {
                throw new Exception(e.Detail.Message, e.InnerException);
            }
            catch (Exception)
            {
                Debugger.Break();
                throw;
            }
        }
Beispiel #9
0
        public async Task<TariffCategory> UpdateTariffCategory(TariffCategory entity)
        {
            if (entity == null) return entity;
            var entitychanges = entity.ChangeTracker.GetChanges().FirstOrDefault();
            if (entitychanges != null)
            {
                try
                {
                    using (var t = new TariffCategoryClient())
                    {
     
                        var updatedEntity =  await t.UpdateTariffCategory(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;
            }

        }