Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. public with sharing class ProjectInfoController {
  2.  
  3.     public PM_Project__c rower {get;set;}
  4.     public List<PM_Module__c> modules {get;set;}
  5.  
  6.     public ProjectInfoController() {
  7.         rower = [SELECT Name, StartDate__c, EndDate__c, ProjectOwner__c, ProjectBudget__c FROM PM_Project__c WHERE ID = 'a0058000005FE4w'];
  8.         modules = [SELECT Name, ParentReleaseId__c, Status__c FROM PM_Module__c];
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement