• nashna
  • NEWBIE
  • 10 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
public class CC {
@AuraEnabled
    public static Contact UpdateCC(Id recId) {
        if(recId==null){
            return null;
        }
        Contact c=[Select Id,checkbox__c FROM Contact WHERE Id=:recId LIMIT 1];
        c.checkbox__c =c.checkbox__c ==false ? true : false;
        update c;
        system.debug('cnt** '+cnt);
        return c;
    }

}
public class CC {
@AuraEnabled
    public static Contact UpdateCC(Id recId) {
        if(recId==null){
            return null;
        }
        Contact c=[Select Id,checkbox__c FROM Contact WHERE Id=:recId LIMIT 1];
        c.checkbox__c =c.checkbox__c ==false ? true : false;
        update c;
        system.debug('cnt** '+cnt);
        return c;
    }

}