DRMFSS.BLL.DispatchAllocation.GetRelatedDispatchsAmountInQuintals C# (CSharp) Method

GetRelatedDispatchsAmountInQuintals() public method

public GetRelatedDispatchsAmountInQuintals ( ) : decimal
return decimal
        public decimal GetRelatedDispatchsAmountInQuintals()
        {
            return this.Dispatches.SelectMany(dispatch => dispatch.DispatchDetails).Sum(detail => (detail.DispatchedQuantityInMT*10));
        }