InstaTax.Core.DomainObjects.HalfExemptDonation.GetDeduction C# (CSharp) Method

GetDeduction() public method

public GetDeduction ( ) : double
return double
        public override double GetDeduction()
        {
            return this.Amount * 0.5;
        }

Usage Example

Exemplo n.º 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