SSW.MusicStore.Data.Entities.Cart.GetTotal C# (CSharp) 메소드

GetTotal() 공개 메소드

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