SSW.MusicStore.Data.Entities.Cart.GetTotal C# (CSharp) Method

GetTotal() public method

public GetTotal ( ) : decimal
return decimal
        public decimal GetTotal()
        {
            return this.CartItems.Select(c => c.Count * c.Album.Price).Sum();
        }