* User views its devices, from a /manage index link * Yavsc.Server resurection
17 lines
341 B
C#
17 lines
341 B
C#
using Yavsc.Billing;
|
||
|
||
namespace Yavsc.Models.Billing {
|
||
public class FixedImpacter : IBillingImpacter
|
||
{
|
||
public decimal ImpactedValue { get; set; }
|
||
public FixedImpacter (decimal impact)
|
||
{
|
||
ImpactedValue = impact;
|
||
}
|
||
public decimal Impact(decimal orgValue)
|
||
{
|
||
return orgValue + ImpactedValue;
|
||
}
|
||
}
|
||
}
|