mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
12 lines
221 B
C#
12 lines
221 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace EssentialTools.Models
|
|
{
|
|
public interface IValueCalculator
|
|
{
|
|
decimal ValueProducts(IEnumerable<Product> products);
|
|
}
|
|
} |