DRMFSS.BLL.DispatchAllocation.GetRelatedDispatchsAmountInUnit C# (CSharp) Méthode

GetRelatedDispatchsAmountInUnit() public méthode

public GetRelatedDispatchsAmountInUnit ( ) : decimal
Résultat decimal
        public decimal GetRelatedDispatchsAmountInUnit()
        {
            return this.Dispatches.SelectMany(dispatch => dispatch.DispatchDetails).Sum(detail => (detail.DispatchedQuantityInUnit));
        }