namespace BuddyFinance.Model { public partial class LoanOffer { public double InterestRateInPercent { get { return InterestRate / 100d; } } public Profile Profile => this.Lender?.Profile; public int ProfileId => LenderId; } }