🏄♂️
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AddPrimaryContact implements Queueable { | |
public contact c; | |
public String state; | |
public AddPrimaryContact(Contact c, String state) { | |
this.c = c; | |
this.state = state; | |
} | |
public void execute(QueueableContext qc) { |