InstaTax.Core.DomainObjects.HalfExemptDonation.GetDeduction C# (CSharp) Метод

GetDeduction() публичный метод

public GetDeduction ( ) : double
Результат double
        public override double GetDeduction()
        {
            return this.Amount * 0.5;
        }

Usage Example

Пример #1
0
 public void DeductionForAHalfExemptDonationUnder80GShouldbeZeroIfDonationIsZero()
 {
     DonationUnder80G donation = new HalfExemptDonation(0);
     Assert.AreEqual(0, donation.GetDeduction(), 0.001);
 }
All Usage Examples Of InstaTax.Core.DomainObjects.HalfExemptDonation::GetDeduction