DRMFSS.BLL.DispatchAllocation.GetRelatedDispatchsAmountInQuintals C# (CSharp) Метод

GetRelatedDispatchsAmountInQuintals() публичный Метод

public GetRelatedDispatchsAmountInQuintals ( ) : decimal
Результат decimal
        public decimal GetRelatedDispatchsAmountInQuintals()
        {
            return this.Dispatches.SelectMany(dispatch => dispatch.DispatchDetails).Sum(detail => (detail.DispatchedQuantityInMT*10));
        }