using System.Collections.Generic; using System.Linq; using YavscLib.Billing; namespace Yavsc.Helpers { public static class BillingHelpers { public static decimal Addition(this List items) => items.Aggregate(0m, (t, l) => t + l.Count * l.UnitaryCost); } }