Poberezhny Vadim

photo by Vadim Poberezhny

Education:

Pinsk College of Mechanical Engineering Mechanical Engineering (2014-2015)

English level:

A2

Work experience:

June 2018 - september 2022 Insulator JSC “Beltps”
November 2022-present car-mechanic "Santa bremor"

Information about me:

I'm engaged in self-study of the salesforce platform and programming in Apex, JavaScript. Also, I am studying the basics of SQL Performed various tasks according to descriptions found on the Internet. Among them: Aura component which containing a table that displays all available accounts and with row action (edit, delete, view). The component can be placed on an Account record and have an online search. Aura component which can be placed on any record page and displays the current weather in the city entered in the search line. Works using free API openweathermap.org I also reproduced the material from the trailhead, making my own additions and watching how it would affect the result.

Skils:

  • Apex
  • Lightning
  • Lightning web component
  • SOQL
  • JSON
  • Rest

Code example:

 
                public class DatatableHandler {
    
                  @AuraEnabled
                  public static List account getAccountData(){
                     return [SELECT Id,Name,AccountNumber,Industry,Phone FROM Account ];
                  }
                  
                  @AuraEnabled
                  public static void delAccount(String accId){
                      Account accountToDelete = [SELECT Id FROM Account WHERE Id =:accId];
                      delete accountToDelete;
                  } 
                  
                  
                  @AuraEnabled
                  public static List account searchAccounts(String nameSegment){
                      String searchStr = '%' + nameSegment + '%';
                      List account accounts = [SELECT Id,Name,AccountNumber,Industry,Phone FROM Account WHERE Name LIKE :searchStr];
                      return accounts;
                  } 
               }