/ Published in: Java
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
public with sharing class MSG_Stage { //Loan Stages //Deposit Stages //... public MSG_Stage() { } public class Loan { public Loan() { MSG_LoanStageProfile__c MSP = MSG_LoanStageProfile__c.getInstance(MSC); Loan_ApplicationComplete = MSP.ApplicationComplete__c; Loan_Closed = MSP.Loan_Closed__c; Loan_Underwriting = MSP.Loan_Underwriting__c; Loan_Complete = MSP.Loan_Complete__c; } } public class Deposit { } }