Esempio n. 1
0
 public static System.Collections.Generic.List <DSS3_LogisticsPoolingForUrbanDistribution.BO.CO2PerCarrier> CO2PerCarrierImplementation(string Name)
 {
     System.Collections.Generic.List <DSS3_LogisticsPoolingForUrbanDistribution.BO.CO2PerCarrier> ChartElement = new System.Collections.Generic.List <DSS3_LogisticsPoolingForUrbanDistribution.BO.CO2PerCarrier>();
     foreach (var i in new DSS3_LogisticsPoolingForUrbanDistribution.DAL.Repository().Get <DSS3_LogisticsPoolingForUrbanDistribution.BO.ShippingOrder>((a) => a.Shipper == Name) ?? Enumerable.Empty <DSS3_LogisticsPoolingForUrbanDistribution.BO.ShippingOrder>())
     {
         if ((i?.Carrier != ""))
         {
             decimal?OrderVolume = (i?.Get_AggregateVolume() ?? 0);
             var     _var4       = i?.Carrier;
             if ((ChartElement?.Any((a) => a.Description == _var4) ?? false))
             {
                 var _var5 = i?.Carrier;
                 ChartElement.FirstOrDefault((a) => a.Description == i.Carrier).KgCO2 = (ChartElement?.FirstOrDefault((a) => a.Description == _var5)?.KgCO2 ?? 0) + OrderVolume.GetValueOrDefault(0);
             }
             else
             {
                 DSS3_LogisticsPoolingForUrbanDistribution.BO.CO2PerCarrier GraphElement = new DSS3_LogisticsPoolingForUrbanDistribution.BO.CO2PerCarrier();
                 GraphElement.Description = (i?.Carrier ?? "");
                 GraphElement.KgCO2       = OrderVolume.GetValueOrDefault(0) * 5.8m;
                 ChartElement?.Add(GraphElement);
             }
         }
     }
     return(ChartElement);
 }
Esempio n. 2
0
/// <summary>
///     Returns true if self and the provided entity have the same Id values
///     and the Ids are not of the default Id value
/// </summary>
        protected bool HasSameNonDefaultIdAs(CO2PerCarrier compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
        }
Esempio n. 3
0
/// <summary>
/// Copies the current object to a new instance
/// </summary>
/// <param name="deep">Copy members that refer to objects external to this class (not dependent)</param>
/// <param name="copiedObjects">Objects that should be reused</param>
/// <param name="asNew">Copy the current object as a new one, ready to be persisted, along all its members.</param>
/// <param name="reuseNestedObjects">If asNew is true, this flag if set, forces the reuse of all external objects.</param>
/// <param name="copy">Optional - An existing [CO2PerCarrier] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual CO2PerCarrier Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, CO2PerCarrier copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((CO2PerCarrier)copiedObjects[this]);
            }
            copy = copy ?? new CO2PerCarrier();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.Description = this.Description;
            copy.KgCO2       = this.KgCO2;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            return(copy);
        }