• Ashutosh_Tosh
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
Public void GetallHiringManagers()

         {

         List<Hiring_Manager__c>lstManager =[select id ,name ,Location__c from Hiring_Manager__c];

             System.debug('Hiring Manger Collection Size--' + lstManager.size());
       
             If (! lstManager.isEmpty())
                                          {
    for (Hiring_Manager__c hr:lstManager) 

                    {
                        system.debug('Hiring Manger Recors is..'+  hr);

             }

         }

         

     }

}


============================================
//Calling from anonymous window :

HelloWolrd helper = new HelloWolrd();
helper.GetallHiringManager();
Public Class CommonHelper1 {
     public static Void getpostionbylocation (string CityName)
     {
          list<Position__C> lstpos =[Select id ,name from Position__C where location__C =:CityName];
          system.debug('Postion Record collection size' +lstpos.size());
         
        if (!lstpos.isempty())
         {
             
             for(Position__C pos :lstpos)
             {
                 
                 system.debug('Position Record is '+pos);
                 
             }
             
         }
             
             
             
    }
   }



calling method anonymous window :CommonHelper1.getpostionbylocation('Delhi');