1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-07 16:06:21 +00:00
LearningMVC/EssentialTools/Models/LinqValueCalculator.cs
wook 0eaa6708fe Ch. 6
EssentialTools
Ninject
2017-04-04 23:28:37 +09:00

15 lines
291 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace EssentialTools.Models
{
public class LinqValueCalculator : IValueCalculator
{
public decimal ValueProducts(IEnumerable<Product> products)
{
return products.Sum(p => p.Price);
}
}
}