-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateContactFromCan.cls
More file actions
27 lines (26 loc) · 1.78 KB
/
CreateContactFromCan.cls
File metadata and controls
27 lines (26 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
public with sharing class CreateContactFromCan {
//Declare a method that does not return anything and takes one input parameter of a Candidate list object called candsFromTrigger
public void createContact (List<Candidate__c> candsFromTrigger){
//Select the Recruiting record from the database and assign to an object called candAcct from the sObject Account class
Account candAcct = [SELECT a.Id FROM Account a WHERE a.Name = 'Recruiting'];
//Instantiate a Contact list object from the List class called conList
List<Contact> conList = new List<Contact>();
//Declare a For list loop to loop through the input parameter list candsFromTrigger with an iterationvariable called currentCandidate
for(Candidate__c currentCandidate:candsFromTrigger){
//Instantiate an object called con from the sObject class contact
Contact con = new Contact();
//Set the attribute AccountID of the con object to the value of the Id attribute of the candAcct object
con.AccountId = candAcct.Id;
//Set the attribute Firstname of the con object to the value of the First_Name__c attribute of the currentCandidate object
con.FirstName = currentCandidate.First_Name__c;
//Set the attribute Lastname of the con object to the value of the Last_Name__c attribute of the currentCandidate object
con.LastName = currentCandidate.Last_Name__c;
//Set the attribute Email of the con object to the value of the Email__c attribute of the currentCandidate object
con.Email = currentCandidate.Email__c;
//Add the con object to the conList
conList.add(con);
}
//Persist the conList to the database
Database.insert(conList);
}
}