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));
        }