void CalculateTotal() { Total = Deductions.Sum(x => x,Amount) + Utilities.Sum(x => x.Amount) + Rent.Amount }
Looks like a compilation error. For Deductions, you used x => x,Amount (notice the comma), should be x => x.Amount