yavsc/Yavsc/Models/Billing/ProportionalImpacter.cs

14 lines
271 B
C#

using Yavsc.Billing;
7 years ago
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
}