yavsc/Yavsc/Models/Billing/ProportionalImpacter.cs

14 lines
274 B
C#

7 years ago
using YavscLib.Billing;
8 years ago
namespace Yavsc.Models.Billing   {
7 years ago
public class ProportionalImpacter : IBillingImpacter
8 years ago
{
public decimal K { get; set; }
public decimal Impact(decimal orgValue)
{
return orgValue * K;
}
}
7 years ago
}