I am working on creating a model where I want all of the decimal values to end up being 2 decimal places (currency). This is what I was thinking, but obviously doesn't work.
public class Fees
{
public decimal permitFee { set; get { return Math.Round(permitFee, 2); } }
public decimal planReviewFee { set; get { return Math.Round(planReviewFee, 2); } }
public decimal surchargeFee { set; get { return Math.Round(surchargeFee, 2); } }
public decimal totalFee { get { return permitFee + planReviewFee + surchargeFee; } }
}
How should I setup my object so I get the correct outputted value?
